summaryrefslogtreecommitdiff
path: root/sysdata_windows.go
AgeCommit message (Expand)Author
2014-03-24Started the Windows implementation of Area.Pietro Gagliardi
2014-03-12Separated file creation dates from the package comment.Pietro Gagliardi
2014-03-12Added indeterminate ProgressBar code on Windows and fixed up a few other thin...Pietro Gagliardi
2014-03-12Gave Listboxes a border on Windows by implementing the subset of LBS_STANDARD...Pietro Gagliardi
2014-03-11Removed error returns from Combobox.Delete(), Listbox.Delete(), and sysData.d...Pietro Gagliardi
2014-03-10Fixed compiler errors in the previous few commits.Pietro Gagliardi
2014-03-10Removed error returns from sysData.setText() now that we no longer care.Pietro Gagliardi
2014-03-10Changed Windows sysData.setText() to panic on error. WM_SETTEXT's documentati...Pietro Gagliardi
2014-03-09Removed now-unused error returns from sysData.show() and sysData.hide().Pietro Gagliardi
2014-03-09Split sysData.show() into separate show() and firstShow() to accomodate Windo...Pietro Gagliardi
2014-03-09Steamrolled errors under panic() in Combobox/Listbox.Append()/InsertBefore() ...Pietro Gagliardi
2014-03-08Added the Windows implementation of Combobox/Listbox.Len().Pietro Gagliardi
2014-03-03Fixed Mac OS X control placement flipping. This is done by passing the height...Pietro Gagliardi
2014-02-25Added password entry fields; they are the alternate mode of LineEdit.Pietro Gagliardi
2014-02-25Added Windows implementation of ProgressBar and the requisite comctl32.dll code.Pietro Gagliardi
2014-02-25Added most of the Windows implementation of ProgressBar. Now to grab the comc...Pietro Gagliardi
2014-02-24Set the default control font on Windows to the expected standard font instead...Pietro Gagliardi
2014-02-19Moved to a proper package; main() is now a test and go test -c is used to bui...Pietro Gagliardi
2014-02-17Fixed the GTK+ crashes (I think) by making resizes synchronous. Since all con...Pietro Gagliardi
2014-02-15Added Listbox.Selection() and Listbox.SelectedIndices(). Also fixed a bug inv...Pietro Gagliardi
2014-02-15Added Combobox.SelectedIndex().Pietro Gagliardi
2014-02-15Added Combobox.Delete() and Listbox.Delete() and added some TODOs.Pietro Gagliardi
2014-02-15Added vertical scroll bars to Combobox.Pietro Gagliardi
2014-02-15Made sure sysData.selectedIndices() returns an empty slice if nothing was sel...Pietro Gagliardi
2014-02-15More error handling reduction.Pietro Gagliardi
2014-02-15Reduced the number of unnecessary error returns based on MSDN. The TODOs that...Pietro Gagliardi
2014-02-15Resolved some more TODOs... though resolving the rest in this file is going t...Pietro Gagliardi
2014-02-15Removed setting the initial width and height in sysData.make() (this gets rid...Pietro Gagliardi
2014-02-15Added sysData.setWindowSize(), which will simplify a few things in Window.Ope...Pietro Gagliardi
2014-02-15Fixed build errors in the previous commits.Pietro Gagliardi
2014-02-15Added combobox/listbox selection helper functions.Pietro Gagliardi
2014-02-15Added sysData.insertBefore().Pietro Gagliardi
2014-02-14Added scrollbars to Listbox.Pietro Gagliardi
2014-02-14Added Listboxes. You can't use the results just yet...Pietro Gagliardi
2014-02-14Renamed sysData.editable to sysData.alternate in preparation for ListBox.Pietro Gagliardi
2014-02-14Added labels.Pietro Gagliardi
2014-02-14Added LineEdit.Pietro Gagliardi
2014-02-14Added Combobox.Pietro Gagliardi
2014-02-13Added Checkbox.Checked().Pietro Gagliardi
2014-02-13Added checkboxes. You can't really do anything with them yet, though...Pietro Gagliardi
2014-02-13Added sizing of windows and the main window control. It presently deadlocks; ...Pietro Gagliardi
2014-02-12Fixed compiler errors. New code structure success!Pietro Gagliardi
2014-02-12Adjusted sysData.make() to make the new window class and fixed main(). Now to...Pietro Gagliardi
2014-02-12Windows sysData has been adjusted to deal with child controls. Rather than st...Pietro Gagliardi
2014-02-12Added Window.SetTitle(). Also oops, forgot to mark the window as created.Pietro Gagliardi
2014-02-12Added buttons.Pietro Gagliardi
2014-02-12Added initial window size and the Window.SetTitle() function.Pietro Gagliardi
2014-02-12Separated initial text from sysData and fixed errors in the previous commits.Pietro Gagliardi
2014-02-12Added control ID generation.Pietro Gagliardi
2014-02-11Changed the sysData cache so that if we didn't fill it in yet, getSysData() r...Pietro Gagliardi