| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-06-05 | Fixed the GTK+ Combobox sizing issues for real this time. | Pietro Gagliardi | |
| 2014-06-05 | Fixed resizing of editable comboboxes in the GTK+ backend. Uneditable ↵ | Pietro Gagliardi | |
| comboboxes are still an issue, and there's experimental code to try to fix them, but it doesn't work... | |||
| 2014-06-05 | Decided not to change the default window title of a MsgBox() on Windows for ↵ | Pietro Gagliardi | |
| now. If I change my mind, it's a documentaiton change =P | |||
| 2014-06-05 | Figured out what happens if a message box is created for an invisible ↵ | Pietro Gagliardi | |
| window, documented it was undefined (Windows and GTK+ behave reasonably but at least Windows is not documented here; Mac OS X shows a sheet attached to invisible where the titlebar should be and then considers the window closed), and added the panic() checks for uncreated Windows. | |||
| 2014-06-05 | Verified resize differences on MsgBox() with a parent. | Pietro Gagliardi | |
| 2014-06-05 | More TODOs. | Pietro Gagliardi | |
| 2014-06-05 | Implemented message box transience on Mac OS X. | Pietro Gagliardi | |
| 2014-06-05 | Implemented the new MsgBox() transience behavior on GTK+. | Pietro Gagliardi | |
| 2014-06-04 | Implemented the new MsgBox() transience on Windows. | Pietro Gagliardi | |
| 2014-06-04 | More TODOs. | Pietro Gagliardi | |
| 2014-06-04 | Added the concept of transience to MsgBox() and MsgBoxError(). Individual ↵ | Pietro Gagliardi | |
| implementations will come next. | |||
| 2014-06-04 | Resolved the ACTCTX_FLAG_SET_PROCESS_DEFAULT TODO by deciding to enable this ↵ | Pietro Gagliardi | |
| flag for maximum safety. Also added more future plans. | |||
| 2014-06-04 | Resolved TODO about indeterminate ProgressBar repetition by deciding to ↵ | Pietro Gagliardi | |
| leave it to the implementation. | |||
| 2014-06-04 | Removed TODOs about sign extension on Windows; situation resolved. | Pietro Gagliardi | |
| 2014-06-04 | Added a link to the older Layout page on MSDN to prefsize_windows.go. | Pietro Gagliardi | |
| 2014-06-04 | Resolved a TODO in stdwndclass_windows.go about deferring WM_NCCREATE to ↵ | Pietro Gagliardi | |
| DefWindowProc(). | |||
| 2014-06-03 | Marked the README as needing updates and added API change warnings. | Pietro Gagliardi | |
| 2014-06-03 | Big change to Window: split Open()'s functionality into Create() and Open(); ↵ | Pietro Gagliardi | |
| they no longer return errors. | |||
| 2014-06-03 | Quick changes: turned "Window has been opened" to "Window has been created" ↵ | Pietro Gagliardi | |
| since I'm going to separate creating and opening (Open() will call Create()). | |||
| 2014-06-03 | Decided to panic in the hwnd sanity check in sysdata_windows.go; the ↵ | Pietro Gagliardi | |
| situation /is/ exceptional, after all (and we need to just get rid of all errors sometime). | |||
| 2014-06-03 | Removed the TODO on memstride: we were already using it?????? It is working ↵ | Pietro Gagliardi | |
| correctly... No idea why that TODO was there; I know I added it when I was too tired to think though. | |||
| 2014-06-03 | Added the previous commit to the future plans instead. | Pietro Gagliardi | |
| 2014-06-03 | Made multiple modifier keys undefined; removed the TODO there. If I need to ↵ | Pietro Gagliardi | |
| change the behavior I can do it later. | |||
| 2014-06-03 | Decided not to rename MouseEvent.Pos. | Pietro Gagliardi | |
| 2014-06-03 | And removed that TODO from the previous commit after verifying that such a ↵ | Pietro Gagliardi | |
| proposal is too risky. | |||
| 2014-06-03 | Rewrote a TODO on build tags for the Unix build. | Pietro Gagliardi | |
| 2014-06-03 | Removed TODO about application-modal dialog boxes in GTK+; they were already ↵ | Pietro Gagliardi | |
| application modal! The real issue is window transience... and that's where platforms differ greatly. | |||
| 2014-06-03 | Removed TODOs about device coordinates in the GTK+ backend; that has been ↵ | Pietro Gagliardi | |
| resolved. | |||
| 2014-06-03 | Now that the Windows string handling has been properly fixed, removed the ↵ | Pietro Gagliardi | |
| TODO about the 32-bit build being unstable. | |||
| 2014-06-03 | Migrated area_windows.go to the new string handling. I think that's it for ↵ | Pietro Gagliardi | |
| converting existing code... Now to test on real Windows. | |||
| 2014-06-03 | Migrated dialog_windows.go to the new string handling. | Pietro Gagliardi | |
| 2014-06-03 | Migrated stdwndclass_windows.go to the new string handling. | Pietro Gagliardi | |
| 2014-06-03 | Migrated uitask_windows.go to the new string handling. | Pietro Gagliardi | |
| 2014-06-03 | Removed a stray function from common_windows.go that both was not used and ↵ | Pietro Gagliardi | |
| went against what we're trying to do with strings in Windows. | |||
| 2014-06-03 | Converted comctl_windows.go to use the new string wrapper functions. | Pietro Gagliardi | |
| 2014-06-03 | More TODOs. | Pietro Gagliardi | |
| 2014-06-03 | Converted sysdata_windows.go to use the new string conversion setup from the ↵ | Pietro Gagliardi | |
| previous commit. This has to be first, otherwise a few other things will fail to compile... | |||
| 2014-06-03 | Added convenience functions to the Windows backend for UTF-16 string ↵ | Pietro Gagliardi | |
| handling. I'll convert the existing code to use it shortly. | |||
| 2014-06-03 | Removed a TODO from area_windows.go after verifying that what it flagged ↵ | Pietro Gagliardi | |
| (GetKeyState() vs. GetAsyncKeyState()) is indeed what we want to do (the former). | |||
| 2014-06-03 | Removed a policy TODO in area_windows.go; decided to keep the redundant ↵ | Pietro Gagliardi | |
| entries in the Modifiers table table just to be safe. | |||
| 2014-06-02 | Removed a leftover TODO note in area_unix.go. | Pietro Gagliardi | |
| 2014-06-02 | Resolved TODOs in callbacks_unix.go. (For the returning FALSE TODO, I ↵ | Pietro Gagliardi | |
| decided it would be safest to let event handlers propagate, as I did with Areas earlier.) | |||
| 2014-06-02 | Resolved command-line handling in the GTK+ backend by not doing it and ↵ | Pietro Gagliardi | |
| documenting that we don't do it. | |||
| 2014-06-02 | Gave 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-06-02 | Added a test of MsgBox() event modality to the standard Area test. | Pietro Gagliardi | |
| 2014-06-02 | Removed leftover TODO about left-justifying labels in GTK+. | Pietro Gagliardi | |
| 2014-06-02 | Properly left-aligned Labels in GTK+. Also added a note to decide ↵ | Pietro Gagliardi | |
| on/document/verify vertical alignment of Labels. | |||
| 2014-06-02 | Moved the GtkLayout transparency style to the new init-time style code in ↵ | Pietro Gagliardi | |
| gtkcalls_unix.go. | |||
| 2014-06-02 | Moved the GTK+ ProgressBar style stuff to the Go side and to gtk_init(). | Pietro Gagliardi | |
| 2014-06-02 | Null-terminated the GtkLayout stylesheet string. This will be handy for ↵ | Pietro Gagliardi | |
| consolidating all the GTK+ stylesheet stuff into a single Go-side init function. (Thanks to mischief, nsf, and dsal in irc.badnik.net/#go-nuts for confirming that this is valid.) | |||
