summaryrefslogtreecommitdiff
path: root/controls_windows.go
AgeCommit message (Collapse)Author
2014-08-30Out with the old...Pietro Gagliardi
2014-07-02Moved it all back; the preemptive multitaksing during an event handler kills ↵Pietro Gagliardi
us on all platforms. Going to have to restrict ALL GUI accss to happening from one t hread, so going to need to drop uitask entirely and have just a start() callback for startup code and a post() function for posting requests to windows (like channel sends but into a perpetual buffer).
2014-07-02Moved everything out of the way pending rewrite.Pietro Gagliardi
2014-06-10More go fmt.Pietro Gagliardi
2014-05-26Removed commented-out checkbox stuff from controls_windows.go since we'll be ↵Pietro Gagliardi
sending messages directly to the checkbox instead. We still have to worry about radio buttons, so I'm not merging controls_windows.go into common_windows.go just yet.
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-25Changed most instances of var to const in the Windows code. Only one left...Pietro Gagliardi
2014-04-28Moved TODOs about stripping non-Windows XP constants to future plans; also ↵Pietro Gagliardi
reworded a comment in comctl_windows.go.
2014-04-03Adjusted Button and Combobox sizes on Windows to be better...Pietro Gagliardi
2014-03-25Wrote the code to actually scroll Areas on Windows.Pietro Gagliardi
2014-03-25Added the actual scrolling to Windows Areas. Now to just adjust the cliprect ↵Pietro Gagliardi
properly...
2014-03-25Made the scrollbars on Windows Areas actually scroll. There are some kinks ↵Pietro Gagliardi
that need to be worked out before we can move on...
2014-03-25Added scrollbars to Areas on Windows; they seem to respond properly to ↵Pietro Gagliardi
resize events, but since we're not handling scroll events, the scroll position won't change yet. (We're also not drawing with scrolling just yet.)
2014-03-12Separated file creation dates from the package comment.Pietro Gagliardi
2014-03-12Dropped Windows 2000 support.Pietro Gagliardi
2014-03-11TODO reduction and long-migrated code removal.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-15Split out combobox and listbox error constants into their own sections of ↵Pietro Gagliardi
controls_windows.go.
2014-02-15Fixed build errors in the previous commits.Pietro Gagliardi
2014-02-14Added Listboxes. You can't use the results just yet...Pietro Gagliardi
2014-02-14Added labels.Pietro Gagliardi
2014-02-14Added LineEdit.Pietro Gagliardi
2014-02-14Added Combobox.Pietro Gagliardi
2014-02-13Added Checkbox.Checked().Pietro Gagliardi
2014-02-12Added buttons.Pietro Gagliardi
2014-02-11Moved things that I haven't migated yet out of the way for now.Pietro Gagliardi
2014-02-11Simplifying file structure by combining controls files (2/2).Pietro Gagliardi
2014-02-11Simplifying file structure by combining controls files (1/2).Pietro Gagliardi