| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-06-08 | Updated some TODOs. | Pietro Gagliardi | |
| 2014-06-08 | Fixed a quick typo spotted by _7sins in irc.freenode.net/#go-nuts. | Pietro Gagliardi | |
| 2014-06-08 | Made the application-modal sentinel in dialog.go non-nil to prevent weird ↵ | Pietro Gagliardi | |
| behavior on nil Windows in program code. Thanks to xtg in the Gopher Academy Slack for corroborating. | |||
| 2014-06-08 | Cleaned up dialog documentation. | Pietro Gagliardi | |
| 2014-06-08 | Added new MsgBox() behavior on Mac OS X. Now we can finally remove MsgBox() ↵ | Pietro Gagliardi | |
| from the TODOs! :D | |||
| 2014-06-08 | Fixed modality issues on the GTK+ MsgBox() changes. The system introduced ↵ | Pietro Gagliardi | |
| here has the advantage of scaling out to all other types of dialogs. | |||
| 2014-06-08 | Whoops, forgot to apply dialogWindow to dialog_unix.go. | Pietro Gagliardi | |
| 2014-06-08 | Added the new MsgBox() behavior to the GTK+ backend. It /almost/ works ↵ | Pietro Gagliardi | |
| right; just needs some more changes... | |||
| 2014-06-08 | Implemented the new MsgBox()/MsgBoxError() behavior on Windows. | Pietro Gagliardi | |
| 2014-06-08 | Woo yeah it's another API change to MsgBox()! This splits parent out and ↵ | Pietro Gagliardi | |
| makes it a receiver of MsgBox() and MsgBoxError() for the case when you want to show modal to a specific window only. These will eventually return channels, but first I'll need to igure out how to get this working... | |||
| 2014-06-08 | Moved the blurred Area check TODO to future plans because I'd need to find ↵ | Pietro Gagliardi | |
| images for that; added some advice for that. | |||
| 2014-06-08 | Moved the Listbox preferred size TODO to future plans because this was ↵ | Pietro Gagliardi | |
| addressed earlier when trying to do horizontal scrolling; see the experiments/ folder for how poorly that turned out. Preferred size will need the same code. | |||
| 2014-06-08 | Checked Windows RECT usage and fixed wrong ones. | Pietro Gagliardi | |
| 2014-06-08 | Reported 64-bit wine failures to the wine team. | Pietro Gagliardi | |
| 2014-06-07 | Fixed the Windows 7 progressbar animation dumbness. | Pietro Gagliardi | |
| 2014-06-07 | Updated TODOs. wine bug filed; removed that TODO. | Pietro Gagliardi | |
| 2014-06-07 | Fixed all the NSAutoreleasePool issues on Mac OS X 10.6. | Pietro Gagliardi | |
| 2014-06-07 | Got rid of some of the autorelease pool warnings by creating a temporary ↵ | Pietro Gagliardi | |
| pool for each call to toNSString(). | |||
| 2014-06-07 | Removed previous commit from todo.md. | Pietro Gagliardi | |
| 2014-06-07 | Fixed Command key up on Mac OS X. This fix also fixes Help key down, so ↵ | Pietro Gagliardi | |
| remove the workaround there. | |||
| 2014-06-07 | Changed SetWindowLong() to SetWindowLongPtr() in the Windows backend. I ↵ | Pietro Gagliardi | |
| forgot I already had some there :| | |||
| 2014-06-07 | Fixed a regression in the Windows Area code: when I fixed numpad behavior, I ↵ | Pietro Gagliardi | |
| broke NEnter. Fixed. Also more TODOs. | |||
| 2014-06-07 | Documented click event on activate behavior in the GTK+ backend. | Pietro Gagliardi | |
| 2014-06-07 | Documented window switch clicks in Area and implemented them on Windows and ↵ | Pietro Gagliardi | |
| Mac OS X. | |||
| 2014-06-07 | Fixed incorrect numpad handling on Windows Areas. | Pietro Gagliardi | |
| 2014-06-07 | Removed the TODO about doing keyboard checks in the same order on each ↵ | Pietro Gagliardi | |
| platform; what we have is fine, and the Windows shift key problem is different. | |||
| 2014-06-07 | Fixed typo in area.go documentation. | Pietro Gagliardi | |
| 2014-06-06 | Elaborated previous commit. | Pietro Gagliardi | |
| 2014-06-06 | Added note that Areas get focus on Mac OS X on a click event automatically ↵ | Pietro Gagliardi | |
| since we make it a first responder. | |||
| 2014-06-06 | Made the preferred size of an Area its size on GTK+ as well. | Pietro Gagliardi | |
| 2014-06-06 | Set Area's preferred size in the documentation and on Windows and Mac OS X. | Pietro Gagliardi | |
| 2014-06-06 | Updated some TODOs. | Pietro Gagliardi | |
| 2014-06-06 | Did half the work to fix Help key handling in Mac OS X. | Pietro Gagliardi | |
| 2014-06-06 | Added Help key handling (as Insert) on Mac OS X. | Pietro Gagliardi | |
| 2014-06-06 | Disabled Travis.ci for now. | Pietro Gagliardi | |
| 2014-06-06 | Merge pull request #12 from TrevorS/patch-1 | Pietro Gagliardi | |
| Typo, I -> i in Windows. (Thanks to TrevorS.) | |||
| 2014-06-06 | Cleaned up some TODOs. Removed the 18 March 2014 one because since all UI ↵ | Pietro Gagliardi | |
| processing happens on one thread, it's not an issue. | |||
| 2014-06-06 | Typo, I -> i in Windows. | Trevor Strieber | |
| 2014-06-06 | Reorganized and cleaned up the todo.md file. | Pietro Gagliardi | |
| 2014-06-06 | Formatting fixes in the placeholder README. | Pietro Gagliardi | |
| 2014-06-06 | Properly link to andlabs/wakeup in the replacement README. | Pietro Gagliardi | |
| 2014-06-06 | Strummed up a new placeholder README in an effort to replace the existing one. | Pietro Gagliardi | |
| 2014-06-06 | Marked a sentence in the Area docs as not being active. | Pietro Gagliardi | |
| 2014-06-06 | Updated doc.go with the MsgBox() change. | Pietro Gagliardi | |
| 2014-06-06 | Fixed the standard window class focus behavior on Windows from the previous ↵ | Pietro Gagliardi | |
| commit to work. Also updated the SetFocus() call in area_windows.go to boot and removed the relevant TODO after checking both wine and Windows XP work fine. | |||
| 2014-06-05 | Implemented code to save and restore control focus on Windows properly when ↵ | Pietro Gagliardi | |
| switching away from/back to our program. It's disabled for now though because it doesn't seem to work... | |||
| 2014-06-05 | Changed Checkbox on Windows to use BS_CHECKBOX instead of BS_AUTOCHECKBOX; ↵ | Pietro Gagliardi | |
| this will be necessary to fix the focus issue in todo.md (see http://blogs.msdn.com/b/oldnewthing/archive/2014/05/22/10527522.aspx). | |||
| 2014-06-05 | Removed the GTK+ indefinite progressbar TODO; the choppiness is correct for ↵ | Pietro Gagliardi | |
| GTK+ <= 3.10: http://blogs.gnome.org/mclasen/2013/11/10/smooth-progress/ - mclasen and Company suggest timing with the frame, but this blog post says this will be automatic in 3.12+, so we're good. | |||
| 2014-06-05 | Removed TODO on gdk_device_ungrab() errors: this is a bug in oxygen-gtk and ↵ | Pietro Gagliardi | |
| GTK+ relating to a feature of GtkComboBoxes and not some issue with our code. Thanks to garnacho_ in irc.gimp.net/#gtk+ for figuring this out; this issue will not be followed here from this point on. | |||
| 2014-06-05 | Removed some leftover debugging code from the previous few commits. | Pietro Gagliardi | |
