summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-05-26Merged windows_windows.go into common_windows.go.Pietro Gagliardi
2014-05-25Added the new autogenerated constants stuff to the README.Pietro Gagliardi
2014-05-25Corrected the environment in windowsconstgen.go so that we can run it from ↵Pietro Gagliardi
test.sh. Phew!
2014-05-25Integrated windowsconstgen into the test build script. There's a small issue ↵Pietro Gagliardi
regarding amd64...
2014-05-25Moved windowsconstgen.go out of the experiments/ folder and into a new ↵Pietro Gagliardi
tools/ folder.
2014-05-25Added 64-bit Windows constants.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-25Fixed Areas on Windows no longer obeying click count rules after adding the ↵Pietro Gagliardi
WM_ACTIVATE handler.
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-25Removed events_windows.go; it is no longer needed.Pietro Gagliardi
2014-05-25Removed constants from events_windows.go. This file can go away now...Pietro Gagliardi
2014-05-25Removed extra newline generated in the zconstants_windows_GOARCH.go file ↵Pietro Gagliardi
from the Windows constants generator.
2014-05-25Fixed issues handling INVALID_HANDLE_VALUE in the Windows constant ↵Pietro Gagliardi
generator, and built the first build with generated constants!
2014-05-25Added a comment to the previous commit.Pietro Gagliardi
2014-05-25Added the ability to pass arguments to the go tool from the Windows constant ↵Pietro Gagliardi
generator's command line; this will be for debugging.
2014-05-25Changed the logic of the Windows constants generator so that it only ↵Pietro Gagliardi
generates unknown constants and complains on known constants (though that's disabled during the transitional period) as that's the situation that will happen now.
2014-05-25Removed constants from windows_windows.go, controls_windows.go, and ↵Pietro Gagliardi
comctl_windows.go, as we can now use the constants generator.
2014-05-25Removed CW_USEDEFAULT variable definition. It won't compile right now, but ↵Pietro Gagliardi
our cgo-based generator will make sure that isn't a problem.
2014-05-25Updated the Windows constants generator to warn against variables that ↵Pietro Gagliardi
haven't been converted to constants (in case I forget I ever did this).
2014-05-25Changed most instances of var to const in the Windows code. Only one left...Pietro Gagliardi
2014-05-25Added quick credit thanks left out of previous commit by accident.Pietro Gagliardi
2014-05-25Updated the Windows constant generator again; this time it now works fully, ↵Pietro Gagliardi
and I just have to nail the variables and nuke the static constants...
2014-05-25Even more work on the Windows constant generator. There are still some edge ↵Pietro Gagliardi
cases involving variables that I need to resolve, and I still need to write the code that actually runs the generated program.
2014-05-25Refactored the constant gathering program a bit.Pietro Gagliardi
2014-05-25Renamed _LPARAM._X()/_LPARAM._Y() to _LPARAM.X()/_LPARAM.Y(): it doesn't ↵Pietro Gagliardi
matter since _LPARAM is not exported anyway, _WPARAM already had this change, and the constant checking tool complains that _X()/_Y() remain undefined (too early? do I need to merge the package files?).
2014-05-25More work on the constant generation tool. We can almost actually write the ↵Pietro Gagliardi
generator portion now...
2014-05-25More work on the constant generation tool.Pietro Gagliardi
2014-05-24Added incomplete code for a program that generates a set of Windows ↵Pietro Gagliardi
constants using cgo.
2014-05-24More TODOs.Pietro Gagliardi
2014-05-24Resolved GtkEntry and GtkProgressBar resizing issues; decided from observing ↵Pietro Gagliardi
how they do padding that worrying about padding is counterproductive for now.
2014-05-23Finished the Area clicking stuff: formalized the behavior in documentation ↵Pietro Gagliardi
in area.go, pointed out that Mac OS X already behaves as expected, updated some comments, and removed the relevant TODO.
2014-05-23Attempted to add focus change support to the new GTK+ high-order click code ↵Pietro Gagliardi
like we do on Windows; it isn't working quite yet but I'll mark it as a TODO for now.
2014-05-23Added custom double-click/triple-click/higher-order click handling to GTK+ ↵Pietro Gagliardi
Areas.
2014-05-23Added click counter reset on window activate/deactivate for Windows Areas.Pietro Gagliardi
2014-05-23Implemented triple-clicks and up on Windows.Pietro Gagliardi
2014-05-23Added code that will replace the toolkit-internal double-click/triple-click ↵Pietro Gagliardi
handling in an effort to normalize click count handling.
2014-05-23More TODOs about mouse button click counts. The GTK+ implementation might be ↵Pietro Gagliardi
the killer here...
2014-05-22Updated some TODOs (part 2 of yesterday's The Old New Thing post).Pietro Gagliardi
2014-05-22More of the previous commit.Pietro Gagliardi
2014-05-22More KeyEvent Modifiers designing in the TODO file.Pietro Gagliardi
2014-05-22Updated TODO on modifier keys handling in KeyEvent.Pietro Gagliardi
2014-05-21Updated a TODO with a The Old New Thing blog post link posted today (!) that ↵Pietro Gagliardi
answers the question the TODO asks.
2014-05-21Removed TODO about pixel alignment of scrollviews on Mac OS X; mikeash in ↵Pietro Gagliardi
irc.freenode.net/#macdev told me this only happens when using fractional pixels (because Mac OS X lets you use fractional coordinates and sizes), so we don't have an issue since all our coordinates are integers.
2014-05-20Updated TODOs after confirming that Windows and Mac do have ↵Pietro Gagliardi
MouseEvent.Held[] sorted.
2014-05-20Removed 10.6 build issues from TODO now that that's done.Pietro Gagliardi
2014-05-20Fixed the whole NSApplication.h thing so now the project builds with both ↵Pietro Gagliardi
10.6 and 10.8. Ugh.
2014-05-20Changed #include to #import on the Objective-C files to settle the whole ↵Pietro Gagliardi
include guards thing. Now to continue fixing Mac OS X 10.6 building...