summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-08-15Implemented applicationShouldTerminate: and ↵Pietro Gagliardi
applicationShouldTerminateAfterLastWindowClosed: on Mac OS X.
2014-08-14Removed TODO for Mac OS X default and escape button equivalents; the default ↵Pietro Gagliardi
is handled properly and there is no canonical escape (it's a property of the dialog manager, which we don't run). Thanks Lyle42 and kongtomorrow in irc.freenode.net/#macdev.
2014-08-14Changed one of the names of the buttons in the small window test so it can ↵Pietro Gagliardi
be used for testing key equivalents in GTK+ and Mac OS X Areas.
2014-08-14Finally removed the TODO for buttons > 3 in GTK+ Areas (alas, bad end).Pietro Gagliardi
2014-08-14Can't think of a better name for sharedWndProc().Pietro Gagliardi
2014-08-14More future plans.Pietro Gagliardi
2014-08-14Removed -[NSApp activateIgnoringOtherApps:]; see ↵Pietro Gagliardi
http://stackoverflow.com/a/25318870/3408572. I don't know how much of a burden this will be in practice.
2014-08-14Resolved Alt key woes on GTK+.Pietro Gagliardi
2014-08-14Made Labels on Windows transparent.Pietro Gagliardi
2014-08-14Fixed some small issues in the C code of the Windows port.Pietro Gagliardi
2014-08-14Moved code to handle window user data in the Windows backend to a single ↵Pietro Gagliardi
function.
2014-08-14Split out common container window procedure code in Windows to its own function.Pietro Gagliardi
2014-08-14More TODOs.Pietro Gagliardi
2014-08-14Made Windows container transparent. Transparency not completely functioning ↵Pietro Gagliardi
yet...
2014-08-14Fine-tuned margin/spacing values on Mac OS X. Also more future plans.Pietro Gagliardi
2014-08-14Moved TODO about Labels to mergeback/grid.go; will worry when Grids become a ↵Pietro Gagliardi
thing again.
2014-08-14Fixed the infinite loop on Tab control dialog message bug(s) on the Windows ↵Pietro Gagliardi
backend.
2014-08-14Fixed Tabs on Windows having undesirable tab stop behavior. This doesn't ↵Pietro Gagliardi
work correctly in wine, and I can confirm for the first time that it actually is a bug in wine!
2014-08-14Stripped C-style comments from C sources and headers where appropriate.Pietro Gagliardi
2014-08-14Added C99 to the Windows and GTK+ cgo CFLAGS after Ian Taylor confirmed it ↵Pietro Gagliardi
was safe to use.
2014-08-14Merged xsizing_darwin.m into control_darwin.m. Even though alignment info is ↵Pietro Gagliardi
only currently used by Label, these functions are called in basegetAuxResizeInfo(), and who knows what will happen future.
2014-08-14Decided to consider the preferred size of all tabs on Windows; on Windows ↵Pietro Gagliardi
Tabs aren't really expected to resize based on which tab is selected, unlike Mac OS X...
2014-08-14Wrote the documentation for Go(). Also more TODOs.Pietro Gagliardi
2014-08-14Removed GTK+ spurious resize TODO and debug spiel; I can't notice much of a ↵Pietro Gagliardi
difference after ignoring extraneous resizes. The custom container will stay, however, as it does not demonstrate weird background drawing bugs with oxygen-gtk.
2014-08-14Cleaned up a bunch of TODOs, moving a few to future plans.Pietro Gagliardi
2014-08-14Implemented table column autoresize on Windows. Also fixed Windows/Mac OS X ↵Pietro Gagliardi
build.
2014-08-14Updated debug spew.Pietro Gagliardi
2014-08-14Removed the preferred width/height calls from the custom GTK+ container; we ↵Pietro Gagliardi
aren't really going to use them.
2014-08-14Made the custom GTK+ container's forall safer in container_unix.c.Pietro Gagliardi
2014-08-14g_ptr_array_remove() DOES preserve order; the documentation is bad. Removed ↵Pietro Gagliardi
that TODO from container_unix.c.
2014-08-13Integrated the custom GTK+ container. Woo! Now to do minor fixups...Pietro Gagliardi
2014-08-13Rewrote the GTK+ container to work for package ui.Pietro Gagliardi
2014-08-13Added beginning of the custom GTK+ contianer code.Pietro Gagliardi
2014-08-13Made Tables tab stops on Windows.Pietro Gagliardi
2014-08-13Added missing URL from comments.Pietro Gagliardi
2014-08-13Removed TODO about Windows Table sizing; the alternatives just don't work ↵Pietro Gagliardi
(literally).
2014-08-13Removed TODO about using LVITEM memory for Tables on Windows. I would still ↵Pietro Gagliardi
need to do a UTF-16 conversion on the Go side, and it seems I can't do that to an already-available buffer (it can only be done to a freshly-allocated one). Not even with unicode/utf16.
2014-08-13I can't read; GDK_3BUTTON_PRESS actually must happen in double the time FROM ↵Pietro Gagliardi
THE FIRST CLICK, not half the time from the second click, so the behavior we have now is correct! TODO removed.
2014-08-13Rechecked Stack/Grid code; non-standalone Label behavior TODO removed.Pietro Gagliardi
2014-08-13Removed leftover from several commits ago.Pietro Gagliardi
2014-08-13Rewrote the main README.Pietro Gagliardi
2014-08-13Documented the previous commit and more TODOs.Pietro Gagliardi
2014-08-13Decided to remove AreaHandler.Defocuses() as that mucks up with the Mac OS X ↵Pietro Gagliardi
keyboard trap.
2014-08-13Kinda sorta maybe implemented AreaHandler.Defocus() on Mac OS X. Starting to ↵Pietro Gagliardi
think I should just not allow Areas to be focused out.
2014-08-13Made Areas on Windows tab stops and implemented AreaHandler.Defocuses() on ↵Pietro Gagliardi
Windows.
2014-08-13Figured out why I'm getting intermittent crashes. Worked around for now, but ↵Pietro Gagliardi
will become a major issue soon...
2014-08-13Implemented AreaHandler.Defocuses() on GTK+. Also more future plans.Pietro Gagliardi
2014-08-12Added a new method to AreaHandler, Defocuses(), for navigation events.Pietro Gagliardi
2014-08-12Added a proposal for a Sidebar control.Pietro Gagliardi
2014-08-12Determined that Backspace, Tab, and Enter work in Areas on Windows (though ↵Pietro Gagliardi
more TODOs due to dialog message craziness).