summaryrefslogtreecommitdiff
path: root/common_windows.go
AgeCommit message (Collapse)Author
2014-05-11Consistency change: all Windows API structure field names now match ↵Pietro Gagliardi
case-wise (some were forcibly exported in the past for historical reasons: I originally started package ui by trying to write a Windows API wrapper, but decided to ditch that and just use the Windows API directly from package ui). Also more TODOs.
2014-04-13Migrated cursors_windows.go and icons_windows.go.Pietro Gagliardi
2014-04-12Removed the GDI+ dependency on Windows since we no longer use it.Pietro Gagliardi
2014-04-11Rewrote Area code on Windows to use alpha-premultiplied RGB and only use GDI ↵Pietro Gagliardi
functions to do it... and it doesn't quite work right yet.
2014-04-02Forced Common Controls version 6 on Windows by embedding the needed manifest in.Pietro Gagliardi
2014-03-25Added Area mouse events on Windows. Also more TODOs.Pietro Gagliardi
2014-03-24Added GDI+ to the package's Windows version: DLL loaded, initialized, and ↵Pietro Gagliardi
shut down. It will be used for drawing to Areas because using GDI itself is more complex than it needs to be.
2014-03-12Separated file creation dates from the package comment.Pietro Gagliardi
2014-02-25Added Windows implementation of ProgressBar and the requisite comctl32.dll code.Pietro Gagliardi
2014-02-19Moved to a proper package; main() is now a test and go test -c is used to ↵Pietro Gagliardi
build. Once I iron out a bug with Windows event handling, I'll add a README.
2014-02-15Removed a TODO regarding Windows Common Controls because I'm not going to be ↵Pietro Gagliardi
using those constants (and if I ever add more controls I will need to use comctl anyway).
2014-02-15More TODO reduction.Pietro Gagliardi
2014-02-14Now that we have sysData.text() we no longer need the getText() that needed ↵Pietro Gagliardi
to be migrated.
2014-02-11Moved some more data structures to common_windows.go and made more things ↵Pietro Gagliardi
private.
2014-02-11Added _windows.go extensions to all the files in preparation for the library ↵Pietro Gagliardi
writing.