| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-08-12 | Fixed build errors. | Pietro Gagliardi | |
| 2018-08-11 | More control migration. | Pietro Gagliardi | |
| 2018-08-11 | More control conversion and syncing. | Pietro Gagliardi | |
| 2018-08-11 | Moved all the Go files back out of the way. There needs to be a better way. | Pietro Gagliardi | |
| 2018-08-11 | Readded Combobox and added EditableCombobox. | Pietro Gagliardi | |
| 2018-08-11 | Moved the existing .go files out of the way and replaced ui.h with the ↵ | Pietro Gagliardi | |
| alpha4 ui.h. | |||
| 2016-05-29 | Switched OS X to use statically linked libui. | Pietro Gagliardi | |
| 2015-12-12 | Added uiCombobox. | Pietro Gagliardi | |
| 2014-08-30 | Out with the old... | Pietro Gagliardi | |
| 2014-07-02 | Moved it all back; the preemptive multitaksing during an event handler kills ↵ | Pietro Gagliardi | |
| us on all platforms. Going to have to restrict ALL GUI accss to happening from one t hread, so going to need to drop uitask entirely and have just a start() callback for startup code and a post() function for posting requests to windows (like channel sends but into a perpetual buffer). | |||
| 2014-07-02 | Moved everything out of the way pending rewrite. | Pietro Gagliardi | |
| 2014-06-30 | Restored the previous new API. I'm going to change it so that events are ↵ | Pietro Gagliardi | |
| callbacks rather than using a window handler, but other than that... yeah. | |||
| 2014-06-30 | Reverted everything back to the old API. | Pietro Gagliardi | |
| 2014-06-28 | Began the migration to the new API. Removed locks from the public control ↵ | Pietro Gagliardi | |
| APIs; they won't be needed anymore. | |||
| 2014-06-25 | Made the new sizing system work on Windows. | Pietro Gagliardi | |
| 2014-06-25 | Migrated existing controls to the new sizing system. | Pietro Gagliardi | |
| 2014-06-25 | Added the necessary work to make new regular Labels work on the other platforms. | Pietro Gagliardi | |
| 2014-06-10 | More go fmt. | Pietro Gagliardi | |
| 2014-06-05 | Fixed the GTK+ Combobox sizing issues for real this time. | Pietro Gagliardi | |
| 2014-05-29 | Checked to see if the previous commit worked after removing the leftover ↵ | Pietro Gagliardi | |
| Combobox selectIndex() code; it does. Removed the dummy code from the Windows and GTK+ backends as well. | |||
| 2014-04-28 | Moved TODOs about new event signals to the future plans document. | Pietro Gagliardi | |
| 2014-04-12 | Fixed Comboboxes on Mac OS X having an initial selection. This also lays the ↵ | Pietro Gagliardi | |
| groundwork for adding Combobox/Listbox.Select() as a public function... | |||
| 2014-04-01 | Removed the initText parameter from sysData.make() and changed all ↵ | Pietro Gagliardi | |
| invocations to call sysData.setText() separately; this avoids the need to check if sysData.setText() is valid. Also implemented that on GTK+. | |||
| 2014-03-18 | Restored the locks everywhere except on resizing calculations. I'll run ↵ | Pietro Gagliardi | |
| under the assumption that uitask cannot process any requests while a resize occurs, which means preferredSize() and Stack/Grid.setRect() are inherently safe... let's hope I'm right... | |||
| 2014-03-17 | Changed the new resizing code so that it uses the same allocated slice per ↵ | Pietro Gagliardi | |
| window instead of making a new one to store all the resize requests each time. | |||
| 2014-03-17 | Changed window resizes so that the actual Control.setRect() functions ↵ | Pietro Gagliardi | |
| appended to an array of requests that the resize() function set all at once instead of having each done individually. This will be necessary for what I think will be a solution to the deadlocks. It doesn't work right now; I'm assuming it's allocating too much memory. I know how to fix this, but I'm committing what I have so far to be safe. | |||
| 2014-03-17 | Dumped the mutex locks from the other controls and elaborated/asked for help ↵ | Pietro Gagliardi | |
| in the README. | |||
| 2014-03-12 | Separated file creation dates from the package comment. | Pietro Gagliardi | |
| 2014-03-11 | Removed error returns from Combobox.Delete(), Listbox.Delete(), and ↵ | Pietro Gagliardi | |
| sysData.delete(), since they are no longer used. Updated the TODO file to mark this issue closed. | |||
| 2014-03-09 | Removed error returns from Control.preferredSize() since errors are not ↵ | Pietro Gagliardi | |
| going to be returned anymore. | |||
| 2014-03-09 | Fixed compiler errors in the previous commit. | Pietro Gagliardi | |
| 2014-03-09 | Steamrolled errors under panic() in Combobox/Listbox.Append()/InsertBefore() ↵ | Pietro Gagliardi | |
| because screw Windows being different. | |||
| 2014-03-09 | Added bounds checks for Combobox.InsertBefore() and Combobox.Delete(). | Pietro Gagliardi | |
| 2014-03-08 | Added Combobox/Listbox.Len() and its GTK+ implementation. | Pietro Gagliardi | |
| 2014-03-07 | Pinned (or marked for later pinninig) behavior of various controls; also ↵ | Pietro Gagliardi | |
| improved Space()'s documentation. | |||
| 2014-03-07 | Changed Combobox.Append() and Listbox.Append() to accept multiple strings in ↵ | Pietro Gagliardi | |
| one call. | |||
| 2014-03-03 | Fixed Mac OS X control placement flipping. This is done by passing the ↵ | Pietro Gagliardi | |
| height of the window around setRect() calls to avoid polling the content view frame each time. | |||
| 2014-02-25 | Split NewCombobox() into separate functions NewCombobox() and ↵ | Pietro Gagliardi | |
| NewEditableCombobox(). | |||
| 2014-02-24 | Added Control.preferredSize() and preferredSize() for all the standard Controls. | Pietro Gagliardi | |
| 2014-02-19 | Moved to a proper package; main() is now a test and go test -c is used to ↵ | Pietro Gagliardi | |
| build. Once I iron out a bug with Windows event handling, I'll add a README. | |||
| 2014-02-17 | Removed all //package ui comments. | Pietro Gagliardi | |
| 2014-02-15 | Added Combobox.SelectedIndex(). | Pietro Gagliardi | |
| 2014-02-15 | Added Combobox.Delete() and Listbox.Delete() and added some TODOs. | Pietro Gagliardi | |
| 2014-02-15 | Added Combobox.Append() and Combobox.InsertBefore(). | Pietro Gagliardi | |
| 2014-02-15 | Reduced the number of unnecessary error returns based on MSDN. The TODOs ↵ | Pietro Gagliardi | |
| that used to be there have been moved to a new file; similar files for Mac and Linux will also be made. | |||
| 2014-02-15 | Removed setting the initial width and height in sysData.make() (this gets ↵ | Pietro Gagliardi | |
| rid of the dummy 300x300 sizes from the controls) and added an explicit sysData.setWindowSize() to Window.Open() to ensure everything's sized properly. | |||
| 2014-02-14 | Handled all controls's created field. | Pietro Gagliardi | |
| 2014-02-14 | Renamed sysData.editable to sysData.alternate in preparation for ListBox. | Pietro Gagliardi | |
| 2014-02-14 | Added Combobox. | Pietro Gagliardi | |
