summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-03-09Made Listboxes non-editable in Mac OS X; also more TODOs.Pietro Gagliardi
2014-03-09Added bounds checks for Listbox.InsertBefore(). This stupid 32-bit Mac bug ↵Pietro Gagliardi
keeps Listbox.Delete() unchecked for now...
2014-03-09Added bounds checks for Combobox.InsertBefore() and Combobox.Delete().Pietro Gagliardi
2014-03-08Added a flag to the test program to evaluate illegal deletions on Mac OS X, ↵Pietro Gagliardi
necessary before I make it panic myself.
2014-03-08Updated one of the previous TODOs.Pietro Gagliardi
2014-03-08cgo inserts -m32 automatically, so we don't need to in ./d32.Pietro Gagliardi
2014-03-08More TODOs.Pietro Gagliardi
2014-03-08Added the Mac OS X implementation of Combobox/Listbox.Len().Pietro Gagliardi
2014-03-08Added the Windows implementation of Combobox/Listbox.Len().Pietro Gagliardi
2014-03-08Added Combobox/Listbox.Len() and its GTK+ implementation.Pietro Gagliardi
2014-03-07More TODOs.Pietro Gagliardi
2014-03-07More Space() documentation fixes; also a TODO for Space().Pietro Gagliardi
2014-03-07Pinned (or marked for later pinninig) behavior of various controls; also ↵Pietro Gagliardi
improved Space()'s documentation.
2014-03-07Still more TODOs.Pietro Gagliardi
2014-03-07More TODOs.Pietro Gagliardi
2014-03-07Changed Combobox.Append() and Listbox.Append() to accept multiple strings in ↵Pietro Gagliardi
one call.
2014-03-07More control candidate information.Pietro Gagliardi
2014-03-07Oops, the garbage collector is collecting our GTK+ idle callback too (much ↵Pietro Gagliardi
later than it did the other callbacks). Fixed.
2014-03-07Even more control candidate work.Pietro Gagliardi
2014-03-07More control candidates TODO.Pietro Gagliardi
2014-03-07Added more notes to the control candidates document.Pietro Gagliardi
2014-03-06More TODOs.Pietro Gagliardi
2014-03-06Even more TODO elaboration.Pietro Gagliardi
2014-03-06More TODO elaboration.Pietro Gagliardi
2014-03-06Split NewStack() into NewHorizontalStack() and NewVerticalStack(). ↵Pietro Gagliardi
Unexported Orientation and its values accordingly.
2014-03-06Updated to the control candidates document to reflect the now-written Mac OS ↵Pietro Gagliardi
X port.
2014-03-06More TODO cleanup.Pietro Gagliardi
2014-03-06Major overdue cleanup of todo.md.Pietro Gagliardi
2014-03-05Linked the wakeup program int he README as the example.Pietro Gagliardi
2014-03-05Update ui.Go() documentation to show that it will return nil when its main() ↵Pietro Gagliardi
returns now that that behavior is fully implemented.
2014-03-05Have ui.Go() return on main() return on Mac OS X.Pietro Gagliardi
2014-03-05Have ui.Go() return on main() return on Unix.Pietro Gagliardi
2014-03-05Have ui.Go() return on main() return on Windows.Pietro Gagliardi
2014-03-05Remove the 32-bit GTK+ from linux/386 Travis.ci builds; I have no idea how ↵Pietro Gagliardi
to fix this.
2014-03-05One more try with Travis.ci: this time start with multiarch support explicit.Pietro Gagliardi
2014-03-05Now that they appear to work, make Travis.ci builds verbose.Pietro Gagliardi
2014-03-05Travis.ci isn't actually building the package because there's no test files; ↵Pietro Gagliardi
fix that.
2014-03-05Disabled Travis.ci's linux/386 build for now; not sure how to fix it.Pietro Gagliardi
2014-03-05...and that's what I get for not knowing or remembering what I was ↵Pietro Gagliardi
doing/trusting the first answer on stackoverflow.
2014-03-05...hopefully NOW the linux/386 Travis.ci build will be fixed?Pietro Gagliardi
2014-03-05Whoops, looks like Travis.cl hates { cmd; } in its before_install: block; ↵Pietro Gagliardi
also forgot the cgo flags for linux/386.
2014-03-05Configured the Travis.cl configuration to cross-compile Windows and Linux ↵Pietro Gagliardi
for both 386 and amd64.
2014-03-05Whoops; actually need build=master there; also remove extra spacePietro Gagliardi
2014-03-05Updated Travis.ci badge for andlabs/ui.Pietro Gagliardi
2014-03-05Merge pull request #3 from tompao/travis-ciPietro Gagliardi
Example of continuous integration setup with Travis-ci
2014-03-05Add a note about the Mac OS X version of package ui requiring Go 1.3 to the ↵Pietro Gagliardi
README. Updates issue 1.
2014-03-05Xcode 4 comes with a version of clang that treats inline differently: it ↵Pietro Gagliardi
requires exactly one definition of the inline function in the linked unit. static inline is C99-compliant (according to LeoNerd in freenode/##c) and does not have this problem, so use that in objc_darwin.h instead. Fixes issue 1.
2014-03-04Update README.mdTom P
2014-03-04Install GTK3 development filesTom Paoletti
2014-03-04Basic configuration for travis-ciTom Paoletti