summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-07-02More new plans.Pietro Gagliardi
2014-07-02More planning.Pietro Gagliardi
2014-07-02More planning and TODOs.Pietro Gagliardi
2014-07-02More updates to the new plan.Pietro Gagliardi
2014-07-02Added the new plan.Pietro Gagliardi
2014-07-02Moved everything out of the way pending rewrite.Pietro Gagliardi
2014-07-01More TODOs.Pietro Gagliardi
2014-07-01Removed the gtk_main_quit() kludge from uitask_unix.go; this also removes ↵Pietro Gagliardi
our_idle_callback() and its associated stuff.
2014-07-01Migrated the Mac OS X backend to the new uitask system.Pietro Gagliardi
2014-07-01Fixed indeterminate progress bars on GTK+. This specific fix also avoids any ↵Pietro Gagliardi
future panics caused by Go and GTK+ racing by doing the pulsing all on GTK+.
2014-07-01Converted the GTK+ backend to use the new uitask. Indeterminate progressbars ↵Pietro Gagliardi
no longer work; this will be fixed soon.
2014-07-01Restructured uitask to accept a limited range of actions. Implemented this ↵Pietro Gagliardi
on the Windows backend.
2014-07-01Renamed init.go to uitask.go because that should have been done ages ago.Pietro Gagliardi
2014-07-01Made the default action for Window.Closing reject the close request.Pietro Gagliardi
2014-07-01Removed WindowHandler.Pietro Gagliardi
2014-07-01Made Button.Clicked a callback.Pietro Gagliardi
2014-06-30Made Window.Closing a callback closure.Pietro Gagliardi
2014-06-30Restored 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-30Rolled back all those changes; I'm stupid.Pietro Gagliardi
2014-06-30Converted the Mac OS X backend to use uitask() instead of uitask chan func().Pietro Gagliardi
2014-06-30Converted the Windows backend to make uitask a function that runs the func() ↵Pietro Gagliardi
passed into it, rather than a channel that sends the function to another dispatcher. Windows lets us, since SendMessage() will switch threads if called form another thread. This gets rid of one goroutine and makes things cleaner. Mac OS X has the same optimization avaialble (performSelectorOnMainThread:); GTK+... doesn't seem to...
2014-06-30Disabled MsgBox() on Windows for the time being; I'm going to restructure ↵Pietro Gagliardi
uitask to avoid needing to deal with channels and it's the only thing using uimsg now.
2014-06-30Reverted everything back to the old API.Pietro Gagliardi
2014-06-30Copied all the handler-based stuff to a ZIP file as I'm rolling it all back.Pietro Gagliardi
2014-06-29More TODOs.Pietro Gagliardi
2014-06-29Made the "Title and Text" message box parented like it should have been. ↵Pietro Gagliardi
This will also allow me to evaluate what happens if message boxes that are parented are closed in non-reverse order.
2014-06-29More TODOs.Pietro Gagliardi
2014-06-29FIxed compilation errors in the Mac OS X build. It works, but I still need ↵Pietro Gagliardi
to fix dialogs before I can push anything.
2014-06-29More of the same conversion.Pietro Gagliardi
2014-06-29More dialog_darwin.go/.m conversion.Pietro Gagliardi
2014-06-29Did most of the conversion of dialog_darwin.go/.m to the new API.Pietro Gagliardi
2014-06-29Removed stable.md (it is no longer relevant) and moved redoproposal.md to ↵Pietro Gagliardi
olddocs/ since it's now being implemented.
2014-06-29Migrated sysdata_darwin.go and uitask_darwin.go to the new API. Now to just ↵Pietro Gagliardi
wait for the answer to my Stack Overflow question so I can migrate dialog_darwin.go...
2014-06-29Migrated the Mac OS X delegate code to the new API.Pietro Gagliardi
2014-06-28More TODOs.Pietro Gagliardi
2014-06-28Migrated the GTK+ backend to the new API.Pietro Gagliardi
2014-06-28Fixed the build. New API works on Windows! Also removed TODO on dialogs in ↵Pietro Gagliardi
Windows since I can't reproduce the weird behavior anymore; I guess the new code fixes it.
2014-06-28Decided to make dialogs code-modal; will figure out how to get the behavior ↵Pietro Gagliardi
I want on Mac OS X - http://stackoverflow.com/questions/24468620/how-do-i-create-a-nested-run-loop-after-nsalert-beginsheetmodalforwindow-tha - Now to see if Windows works...
2014-06-28Adjusted window.go to make safe functions actually safe.Pietro Gagliardi
2014-06-28Converted most of the rest of the test program. Now I just need to figure ↵Pietro Gagliardi
out what I'm going to do about dialog modality... ugh.
2014-06-28Converted most of the rest of the test program to the new API.Pietro Gagliardi
2014-06-28Migrated the keyboard test to the new API.Pietro Gagliardi
2014-06-28Migrated uitask_windows.go to the new API.Pietro Gagliardi
2014-06-28Migrated init.go to the new API. This should probably be renamed now.Pietro Gagliardi
2014-06-28Added rewrite of most of the dialog system for the new API. The Windows API ↵Pietro Gagliardi
is, however, getting in the way...
2014-06-28Migrated controlsize_windows.go and stdwndclass_windows.go to the new API.Pietro Gagliardi
2014-06-28Migrated sysdata_windows.go to the new API. Also more TODOs.Pietro Gagliardi
2014-06-28Documented the new Window.Closing behavior.Pietro Gagliardi
2014-06-28Implemented the new events in the portable code.Pietro Gagliardi
2014-06-28Migrated window.go and sysdata.go to the new API. Controls will need to be ↵Pietro Gagliardi
migrated as well.