summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-03-15Began to plan out what I need for mouse events.Pietro Gagliardi
2014-03-15More TODOs.Pietro Gagliardi
2014-03-15Added a slightly more meaningful test: draw an Image in an area.Pietro Gagliardi
2014-03-14Actually committed the rectangle to the Area. Area drawing on GTK+ implemented!Pietro Gagliardi
2014-03-14Provided a way to connect child widget signals in the GTK+ sysData and ↵Pietro Gagliardi
connected Area to draw. I think I'm getting the wrong child widget, though...
2014-03-14Hacked around the cairo issue for now; hooked everything together and fixed ↵Pietro Gagliardi
a few things. Added the Area test to the test program. Now to just hook up the draw event.
2014-03-14Major overhaul of the way GTK+ events are handled. Closures that perform ↵Pietro Gagliardi
events are no longer generated; instead all events are given to fixed, compile-time, cgo-exported callback functions that take the sysData as user data. This saves memory (we no longer need to generate closures and we no longer have to save them elsewhere to keep them from being garbage collected) and makes the top of sysdata_unix.go slightly cleaner, but it moves the code for handling UI events into callbacks_unix.go. This is needed for Area, in which we need to feed the sysData to an event connected to a subwidget instead of the main widget returned.
2014-03-14Added Area support in sysdata.go so the package can compile again. Now to do ↵Pietro Gagliardi
that big change mentioned in the previous commit: overhaul of the GTK+ signal system.
2014-03-14Added the GTK+ implementation of Area. It's not enabled yet due to cgo bugs, ↵Pietro Gagliardi
and there's some extra work needed (started here) to tie this in...
2014-03-14Added the portable code for Area.Pietro Gagliardi
2014-03-14More Area planning. I think I now have all the info I need...Pietro Gagliardi
2014-03-14More Area planning and TODOs.Pietro Gagliardi
2014-03-14More Area planning.Pietro Gagliardi
2014-03-14More Area planning.Pietro Gagliardi
2014-03-14More Area API planning.Pietro Gagliardi
2014-03-14More Area planning doc fixups.Pietro Gagliardi
2014-03-14More Area planning document changes.Pietro Gagliardi
2014-03-14Quick Area planning fixes.Pietro Gagliardi
2014-03-14More Area planning and TODOs.Pietro Gagliardi
2014-03-13More Area planning.Pietro Gagliardi
2014-03-13Updated Area planning to indicate to Cocoa that alpha values are not ↵Pietro Gagliardi
premultiplied.
2014-03-13More Area planning.Pietro Gagliardi
2014-03-13Added initial planning document for the Area Control.Pietro Gagliardi
2014-03-12Separated file creation dates from the package comment.Pietro Gagliardi
2014-03-12More TODOs.Pietro Gagliardi
2014-03-12Removed ui.Event(); all event channels are initialized with their objects now.Pietro Gagliardi
2014-03-12Added a note in ui.Go() about it needing to be run from main().Pietro Gagliardi
2014-03-12More TODOs.Pietro Gagliardi
2014-03-12Added package documentation.Pietro Gagliardi
2014-03-12Update README now that I think I have the API as I want it.Pietro Gagliardi
2014-03-12Whoops, that commit that was to remove the ProgressBar line from todo.md ↵Pietro Gagliardi
actually removed the wrong line; fixed.
2014-03-12Changed the way uitask is dispatched on GTK+ to make event handling not a ↵Pietro Gagliardi
CPU hog.
2014-03-12Removed indeterminate ProgressBars from todo.md; that's now done.Pietro Gagliardi
2014-03-12Added indeterminate ProgressBar code for Mac OS X.Pietro Gagliardi
2014-03-12Added indeterminate ProgressBar code on Windows and fixed up a few other ↵Pietro Gagliardi
things along the way.
2014-03-12Added GTK+ indeterminate ProgressBars.Pietro Gagliardi
2014-03-12Added indeterminate ProgressBars to the portable frontend and fixed up ↵Pietro Gagliardi
ProgressBar's documentation.
2014-03-12Forgot one Windows XP move.Pietro Gagliardi
2014-03-12Dropped Windows 2000 support.Pietro Gagliardi
2014-03-12More TODOs.Pietro Gagliardi
2014-03-12Gave Listboxes a border on Windows by implementing the subset of ↵Pietro Gagliardi
LBS_STANDARD we want, not just WS_VSCROLL. This will also allow us to have selection changed events later.
2014-03-12Removed a stray TODO resolved by the previous few commits.Pietro Gagliardi
2014-03-12Filled in the OS/arch support matrix; updated a few things in it.Pietro Gagliardi
2014-03-12Made message boxes run on uitask on Windows; adjusted some related TODOs.Pietro Gagliardi
2014-03-12More TODOs.Pietro Gagliardi
2014-03-12Standardized message boxes so they appear similarly on all platforms. This ↵Pietro Gagliardi
shafts Windows because primary/secondary text message boxes were only added in Windows Vista, but at least MSDN provides discourse.
2014-03-12Made programs go to the front of the screen on Mac OS X like other programs ↵Pietro Gagliardi
do (and like on other platforms).
2014-03-12Added note on Solaris to README.Pietro Gagliardi
2014-03-11Split NewListbox() into NewListbox() (single-selection) and ↵Pietro Gagliardi
NewMultiSelListbox() (multiple selection); fixed the documentaiton for the Listbox constructor(s) to talk about Listbox and not Combobox, and added some TODOs.
2014-03-11Added more TODOs.Pietro Gagliardi