summaryrefslogtreecommitdiff
path: root/zconstants_windows_386.go
AgeCommit message (Collapse)Author
2014-06-02Gave message boxes on Windows the MB_TASKMODAL style, which does event ↵Pietro Gagliardi
modality to the other windows in the program. Does not affect resizes.
2014-05-30Moved the standard window class (for Window) on Windows to get the sysData ↵Pietro Gagliardi
pointer from CreateWindowEx() and store it in the window memory instead of being given it via a closure. This will lead to having only one window class for all Windows, which will come next. Also fixed an error in windowsconstgen's output related to GetWindowLongPtr()/SetWindowLongPtr().
2014-05-30Added GetWindowLongPtr()/SetWindowLongPtr() generation to the ↵Pietro Gagliardi
windowsconstgen tool and the pregenerated files. This will be needed for when we get rid of creating a new window class for each Window/Area. Also did some minor cleanup to the windowsconstgen tool.
2014-05-29Added the new Modifiers handling to the Windows backend.Pietro Gagliardi
2014-05-25Finished migrating the Windows code to using the pregenerated constants.Pietro Gagliardi
2014-05-25Removed constants from common_windows.go. Almost done!Pietro Gagliardi
2014-05-25Removed constants from area_windows.go. I think I added a regression earlier ↵Pietro Gagliardi
when adding the WM_ACTIVATE exception that causes the click count to be reset...
2014-05-25Stripped constants from dialog_windows.go.Pietro Gagliardi
2014-05-25And merged the old events_windows.go constants into ↵Pietro Gagliardi
zconstants_windows_GOARCH.go.
2014-05-25Fixed issues handling INVALID_HANDLE_VALUE in the Windows constant ↵Pietro Gagliardi
generator, and built the first build with generated constants!