andlabs-ui/redo
Pietro Gagliardi d0f9c8af8a Switched from wcscmp() to _wcsicmp() in class names on Windows; class names on Windows are case insensitive - http://stackoverflow.com/questions/7928592/are-windows-window-classes-case-sensitive. 2014-08-28 11:45:47 -04:00
..
mergeback Removed merged back file. 2014-08-28 11:38:23 -04:00
proposals Removed the ImageList proposal now that it's implemented. 2014-08-16 21:56:41 -04:00
area.go Slight behavior change to Area.OpenTextFieldAt(). 2014-08-22 12:53:10 -04:00
area_darwin.go Renamed textField to textfield in the Mac OS X port for consistency. 2014-08-27 13:17:31 -04:00
area_darwin.m Made the width of TextFields more reasonable on Mac OS X. 2014-08-25 16:07:35 -04:00
area_unix.go Fixed focus-out bug in GTK+ Area TextField. 2014-08-22 13:04:57 -04:00
area_windows.c Fixed up Area on Windows to always draw the background regardless of the size of the clipping rectangle on the Go side and to not send extraneous WM_ERASEBKGND. This will be needed for having Areas draw the background. 2014-08-28 11:03:32 -04:00
area_windows.go Removed stray/leftover TODO. 2014-08-24 21:11:03 -04:00
basicctrls.go Added events and validity methods to TextField and implemented the events on the GTK+ backend. 2014-08-20 01:08:24 -04:00
basicctrls_darwin.m More improvements to the Mac OS X TextField.Invalid() popover. 2014-08-27 16:01:47 -04:00
basicctrls_windows.c Added link to info in dialog_windows.c; removed TODOs in area_window.c and basicctrls_windows.c that I decided were fine as they were; more TODOs otherwise. 2014-08-25 23:35:20 -04:00
button_darwin.go Removed Control.containerShow() and Control.containerHide() and the overall ability to show and hide Controls in general; too much effort to get right. 2014-08-04 13:39:33 -04:00
button_unix.go Removed Control.containerShow() and Control.containerHide() and the overall ability to show and hide Controls in general; too much effort to get right. 2014-08-04 13:39:33 -04:00
button_windows.go Removed Control.containerShow() and Control.containerHide() and the overall ability to show and hide Controls in general; too much effort to get right. 2014-08-04 13:39:33 -04:00
checkbox_darwin.go Removed Control.containerShow() and Control.containerHide() and the overall ability to show and hide Controls in general; too much effort to get right. 2014-08-04 13:39:33 -04:00
checkbox_unix.go Removed Control.containerShow() and Control.containerHide() and the overall ability to show and hide Controls in general; too much effort to get right. 2014-08-04 13:39:33 -04:00
checkbox_windows.go Removed Control.containerShow() and Control.containerHide() and the overall ability to show and hide Controls in general; too much effort to get right. 2014-08-04 13:39:33 -04:00
comctl32_windows.c Added cleanup of Windows image lists. 2014-08-25 16:53:47 -04:00
common_darwin.go Implemented Checkbox on Mac OS X. Also untested; will test next. 2014-07-22 23:32:32 -04:00
common_darwin.m Split the autocorrect disabling stuff on Mac OS X into its own function and marked the TextArea TODO as a future plan. 2014-08-11 00:17:21 -04:00
common_unix.go Added Checkbox on the GTK+ backend, added a checkbox to the test program, and fixed a small error in the GTK+ widgetbase.parent() that kept the new widget hidden. 2014-07-21 21:07:14 -04:00
common_windows.c Improved control transparency on Windows. 2014-08-28 10:30:53 -04:00
common_windows.go Part 2 of previous commit. 2014-08-25 16:20:51 -04:00
container.go Split ymargin into top and bottom margins to accomodate Groups on Windows; fixed those. 2014-08-24 21:23:19 -04:00
container_darwin.go Split ymargin into top and bottom margins to accomodate Groups on Windows; fixed those. 2014-08-24 21:23:19 -04:00
container_darwin.m Starting splitting out future plans from the TODOs again; this time: Group. 2014-08-08 20:05:36 -04:00
container_unix.c Stripped C-style comments from C sources and headers where appropriate. 2014-08-14 10:42:10 -04:00
container_unix.go Split ymargin into top and bottom margins to accomodate Groups on Windows; fixed those. 2014-08-24 21:23:19 -04:00
container_windows.c Moved code to handle window user data in the Windows backend to a single function. 2014-08-14 16:12:43 -04:00
container_windows.go Split ymargin into top and bottom margins to accomodate Groups on Windows; fixed those. 2014-08-24 21:23:19 -04:00
control.go Removed outdated comment from Control's documentation. 2014-08-15 20:01:57 -04:00
control_darwin.go Removed the need for C.frame() by splitting apart the alignment rect functions on the Mac OS X side. 2014-08-11 11:36:32 -04:00
control_darwin.m Implemented Group on Mac OS X. 2014-08-16 00:37:38 -04:00
control_unix.go Wrapped GTK+ Areas in a GtkOverlay in preparation for adding OpenTextFieldAt(). 2014-08-22 10:52:51 -04:00
control_windows.c Split out common container window procedure code in Windows to its own function. 2014-08-14 16:00:31 -04:00
control_windows.go Fixed the infinite loop on Tab control dialog message bug(s) on the Windows backend. 2014-08-14 13:05:31 -04:00
controlbase.sh Removed Control.containerShow() and Control.containerHide() and the overall ability to show and hide Controls in general; too much effort to get right. 2014-08-04 13:39:33 -04:00
dialog.go More OpenFile() documentation. 2014-08-26 13:58:39 -04:00
dialog_darwin.go Implemented the new dialog system on Mac OS X. 2014-08-26 15:26:19 -04:00
dialog_darwin.m Implemented the new dialog system on Mac OS X. 2014-08-26 15:26:19 -04:00
dialog_unix.go Got rid of the modal queue now that it's no longer needed. 2014-08-26 15:39:04 -04:00
dialog_windows.c Resolved a TODO. 2014-08-27 17:49:44 -04:00
dialog_windows.go Changed the way dialogs work so that they do real modality properly and implemented such on Windows. 2014-08-26 12:52:32 -04:00
doc.go Wrote the documentation for Go(). Also more TODOs. 2014-08-14 09:53:29 -04:00
events_darwin.go Re-added the events files for Area. 2014-08-04 23:05:31 -04:00
events_notdarwin.go I can't read; GDK_3BUTTON_PRESS actually must happen in double the time FROM THE FIRST CLICK, not half the time from the second click, so the behavior we have now is correct! TODO removed. 2014-08-13 15:00:32 -04:00
future More TODOs. 2014-08-28 11:35:31 -04:00
grid.go Fixed up Grid and wrote a test. 2014-08-15 19:50:00 -04:00
group_darwin.go Implemented Group on Mac OS X. 2014-08-16 00:37:38 -04:00
group_unix.go Cleaned up after bold attributes in group_unix.go. 2014-08-16 09:26:46 -04:00
group_windows.go Made Groups on Windows control parents. 2014-08-28 11:17:44 -04:00
gtk_unix.h Implemented ImageList and Table ImageIndex on GTK+. 2014-08-16 20:48:35 -04:00
imagelist.go Added the beginning of ImageList, including the Windows implementation. 2014-08-16 14:02:00 -04:00
imagelist_darwin.go Implemented ImageList and Table ImageIndex on Mac OS X. 2014-08-16 21:49:43 -04:00
imagelist_darwin.m Fixed weird pixel corruption in the Mac OS X ImageList implementation (damn GC). Thanks to erica in irc.freenode.net/#macdev for guessing right and others for helping. 2014-08-16 22:50:25 -04:00
imagelist_unix.go Implemented ImageList and Table ImageIndex on Mac OS X. 2014-08-16 21:49:43 -04:00
imagelist_windows.c Added cleanup of Windows image lists. 2014-08-25 16:53:47 -04:00
imagelist_windows.go Added cleanup of Windows image lists. 2014-08-25 16:53:47 -04:00
init_windows.c Stripped C-style comments from C sources and headers where appropriate. 2014-08-14 10:42:10 -04:00
label_darwin.go Renamed textField to textfield in the Mac OS X port for consistency. 2014-08-27 13:17:31 -04:00
label_unix.go Added Label.isStandalone(), used by Grid. Now for the Grid test... 2014-08-15 19:35:49 -04:00
label_windows.go Added Label.isStandalone(), used by Grid. Now for the Grid test... 2014-08-15 19:35:49 -04:00
objc_darwin.h Renamed textField to textfield in the Mac OS X port for consistency. 2014-08-27 13:17:31 -04:00
scrapped Implemented Table.OnSelected() on the GTK+ backend. 2014-08-20 21:30:23 -04:00
stack.go Moved Grid back. Removed now-unused stack.created. 2014-08-15 19:33:33 -04:00
tab_darwin.go Renamed Mac OS X's container's view field to id to be in sync with the other Mac OS X data structures. 2014-08-11 12:49:39 -04:00
tab_darwin.m Started splitting apart xsizing_darwin.m and rearranging objc_darwin.h. 2014-08-09 21:34:56 -04:00
tab_unix.go Same as three commits ago, but for the GTK+ backend. 2014-08-04 22:21:58 -04:00
tab_windows.c Fixed the infinite loop on Tab control dialog message bug(s) on the Windows backend. 2014-08-14 13:05:31 -04:00
tab_windows.go Fixed crashing bug in tab_windows.go. 2014-08-21 13:02:33 -04:00
table.go Added Table.OnSelected() and implemented it on Windows. 2014-08-20 21:21:45 -04:00
table_darwin.go Implemented Table.OnSelected() on Mac OS X. 2014-08-20 21:43:28 -04:00
table_darwin.m Settled some strict typing issues on the Mac OS X backend. 2014-08-25 15:17:16 -04:00
table_unix.c Implemented ImageList and Table ImageIndex on GTK+. 2014-08-16 20:48:35 -04:00
table_unix.go Wrapped GTK+ Areas in a GtkOverlay in preparation for adding OpenTextFieldAt(). 2014-08-22 10:52:51 -04:00
table_windows.c Removed wParam from handle() in table_Windows.c as it appears neitehr Control nor Shift affect checkboxes in Windows. 2014-08-27 18:04:08 -04:00
table_windows.go Added cleanup of Windows image lists. 2014-08-25 16:53:47 -04:00
textfield_darwin.go More improvements to the Mac OS X TextField.Invalid() popover. 2014-08-27 16:01:47 -04:00
textfield_unix.go Added error beep to GTK+ TextField.Invalid(). 2014-08-24 01:14:17 -04:00
textfield_windows.go Began implementing Area.OpenTextFieldAt() on Windows. 2014-08-22 13:57:32 -04:00
uitask.go Fixed foreign events. 2014-08-18 17:19:56 -04:00
uitask_darwin.go Got rid of the modal queue now that it's no longer needed. 2014-08-26 15:39:04 -04:00
uitask_darwin.m Got rid of the modal queue now that it's no longer needed. 2014-08-26 15:39:04 -04:00
uitask_unix.go Got rid of the modal queue now that it's no longer needed. 2014-08-26 15:39:04 -04:00
uitask_windows.c Switched from wcscmp() to _wcsicmp() in class names on Windows; class names on Windows are case insensitive - http://stackoverflow.com/questions/7928592/are-windows-window-classes-case-sensitive. 2014-08-28 11:45:47 -04:00
uitask_windows.go Got rid of the modal queue now that it's no longer needed. 2014-08-26 15:39:04 -04:00
warningpopover_darwin.m Verified NSImageView properties in the Mac OS X warning popover. 2014-08-27 18:29:54 -04:00
winapi_windows.h Improved control transparency on Windows. 2014-08-28 10:30:53 -04:00
window.go Changed the way dialogs work so that they do real modality properly and implemented such on Windows. 2014-08-26 12:52:32 -04:00
window_darwin.go Renamed Mac OS X's container's view field to id to be in sync with the other Mac OS X data structures. 2014-08-11 12:49:39 -04:00
window_darwin.m Removed TODOs about initial sizing of Windows and their Controls on Mac OS X; turns out we fixed that problem when we did our container NSView and overrode setFrameSize: :D 2014-08-11 12:40:41 -04:00
window_unix.go Implemented the new dialog system on GTK+. 2014-08-26 13:54:55 -04:00
window_windows.c Got rid of the modal queue now that it's no longer needed. 2014-08-26 15:39:04 -04:00
window_windows.go Got rid of the modal queue now that it's no longer needed. 2014-08-26 15:39:04 -04:00
yz_icons_test.go Started implementing a test of Area.RepaintAll()/Repaint(). 2014-08-21 15:32:36 -04:00
yz_repaint_test.go Fixed some flaws in GTK+ Area.OpenTextFieldAt(). 2014-08-22 11:39:45 -04:00
zz_test.go Added empty Group test. 2014-08-28 11:18:49 -04:00