summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-08-12Refined a TODO.Pietro Gagliardi
2014-08-12More future plans.Pietro Gagliardi
2014-08-12Now that all calls have to be made on a single thread, Stack.SetStretchy() ↵Pietro Gagliardi
can safely be called even after its Window is created (which is also when the Stack is assigned to the Window anyway).
2014-08-12More TODOs.Pietro Gagliardi
2014-08-12Implemented tab stopping.Pietro Gagliardi
2014-08-12Added WS_EX_CONTROLPARENT to container and Tab on Windows.Pietro Gagliardi
2014-08-12Got rid of the strlen() call in comctl32_windows.c. Thanks to joeshow on the ↵Pietro Gagliardi
Gopher Academy Slack.
2014-08-12Removed TODO about Windows Tabs having no currently selected tab out of a ↵Pietro Gagliardi
nonzero number of tabs; Xeek in irc.freenode.net/#winapi confirmed this cannot happen.
2014-08-12Improved dialog base units calculations on Windows.Pietro Gagliardi
2014-08-12Made Stack an interface to keep parity with all other Controls.Pietro Gagliardi
2014-08-12More future plans.Pietro Gagliardi
2014-08-12Got rid of invalid pointer/integer conversions in table_unix.c and ↵Pietro Gagliardi
rearranged some validity tests there to be safer.
2014-08-12Migrated all Common Controls version 6 initialization on the Windows backend ↵Pietro Gagliardi
to C.
2014-08-12Got rid of the direct use of WPARAM in Area mouse events on Windows. ↵Pietro Gagliardi
Whatever happened between then and now, Held works on both Windows and GTK+ now...
2014-08-11Fixed the weird crash with calling Do() recursively; woo!Pietro Gagliardi
2014-08-11Revert "Revert "Settled race condition TODOs across all platforms... as an ↵Pietro Gagliardi
unfortunate case :("" Put this back on master so we can debug. This reverts commit 67adbd43a1bbf35fdc3963b34ae5631758006fee.
2014-08-11Revert "Settled race condition TODOs across all platforms... as an ↵Pietro Gagliardi
unfortunate case :(" Things broke when introducing this after the new GC... let's see if this broke under the new GC or not. This reverts commit b198a4dfec53a15eac5cdca9fe9d91c145a0119c.
2014-08-11More TODOs.Pietro Gagliardi
2014-08-11Resolved failure conditions in the GTK+ Table GtkTreeModel implementation.Pietro Gagliardi
2014-08-11More future plans.Pietro Gagliardi
2014-08-11Settled race condition TODOs across all platforms... as an unfortunate case :(Pietro Gagliardi
2014-08-11Settled the Label alignment TODO in label_darwin.go. Also more future plans.Pietro Gagliardi
2014-08-11Renamed Mac OS X's container's view field to id to be in sync with the other ↵Pietro Gagliardi
Mac OS X data structures.
2014-08-11Removed TODOs about initial sizing of Windows and their Controls on Mac OS ↵Pietro Gagliardi
X; turns out we fixed that problem when we did our container NSView and overrode setFrameSize: :D
2014-08-11Added a test for window size to test the small window weirdness of Areas on ↵Pietro Gagliardi
Mac OS X.
2014-08-11Fixed compilation errors on the Mac OS X side.Pietro Gagliardi
2014-08-11Moved Mac OS X modifier flags constants to the Objective-C side for maximum ↵Pietro Gagliardi
safety.
2014-08-11Removed a TODO about "other properties" of the Mac OS X Area initializer; I ↵Pietro Gagliardi
have no idea what those properties would be.
2014-08-11Renamed areaView to goAreaView in accordance to the other Objective-C class ↵Pietro Gagliardi
names on the Mac OS X backend.
2014-08-11Removed the need for C.frame() by splitting apart the alignment rect ↵Pietro Gagliardi
functions on the Mac OS X side.
2014-08-11Finished Table cell text layout styles on Mac OS X.Pietro Gagliardi
2014-08-11Split the autocorrect disabling stuff on Mac OS X into its own function and ↵Pietro Gagliardi
marked the TextArea TODO as a future plan.
2014-08-10Started setting text layout options for Table on Mac OS X.Pietro Gagliardi
2014-08-10Improved the error reporting facilities of uiinit() on Mac OS X. Not used ↵Pietro Gagliardi
yet, though...
2014-08-10Stored table column numbers more efficiently on Mac OS X.Pietro Gagliardi
2014-08-10Made a more intelligent Table.preferredSize() for Mac OS X.Pietro Gagliardi
2014-08-10More future plans.Pietro Gagliardi
2014-08-10Removed borders from Areas on Mac OS X.Pietro Gagliardi
2014-08-10Really fixed Mac OS X text box borders this time =PPietro Gagliardi
2014-08-10Fixed text field/label bordering on Mac OS X.Pietro Gagliardi
2014-08-10More .m file restructuring on the Mac OS X backend.Pietro Gagliardi
2014-08-10Settled NSBitmapImageRep TODOs on the Mac OS X backend.Pietro Gagliardi
2014-08-10Removed TODO about nil receiver in uitask_darwin.m by checking for nil anyway.Pietro Gagliardi
2014-08-09Removed TODO in area_darwin.m; -[NSView displayRect:] is the answer.Pietro Gagliardi
2014-08-09Removed TODO about duplicate case labels (it's illegal in C too; citing the ↵Pietro Gagliardi
standards (both C89 and C99) as proof).
2014-08-09Started splitting apart xsizing_darwin.m and rearranging objc_darwin.h.Pietro Gagliardi
2014-08-09Changed PrefSize to PreferredSize throughout.Pietro Gagliardi
2014-08-09Renamed display() to areaRepaintAll() and resolved a TODO on the Mac OS X side.Pietro Gagliardi
2014-08-09Removed unnecessary TODO from xsizing_darwin.m.Pietro Gagliardi
2014-08-09Big change: with the current event model, it's safe to call ↵Pietro Gagliardi
Area.RepaintAll() (and the future Area.Repaint()) from within AreaHandler.Key() and AreaHandler.Mouse(); get rid of the bool returns from each. The future Area.Repaint() is important; the bool returns repainted the whole Area, which may not be optimal.