summaryrefslogtreecommitdiff
path: root/delegate_darwin.go
AgeCommit message (Expand)Author
2014-08-30Out with the old...Pietro Gagliardi
2014-07-03Removed uitask and made the Window creation functions only callable from the ...Pietro Gagliardi
2014-07-02Moved it all back; the preemptive multitaksing during an event handler kills ...Pietro Gagliardi
2014-07-02Moved everything out of the way pending rewrite.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 call...Pietro Gagliardi
2014-06-30Reverted everything back to the old API.Pietro Gagliardi
2014-06-29Migrated the Mac OS X delegate code to the new API.Pietro Gagliardi
2014-06-26Finished implementing the new control sizing system on Mac OS X. The new labe...Pietro Gagliardi
2014-06-10More go fmt.Pietro Gagliardi
2014-05-19Same as previous commit, but for Mac OS X now. The #cgo directives are in uit...Pietro Gagliardi
2014-05-17Decided to unconditionally redraw everything on a window resize on Mac OS X. ...Pietro Gagliardi
2014-05-16Combined all the Objective-C headers into objc_darwin.h.Pietro Gagliardi
2014-05-15Removed all the objc_getClass() and sel_getUid() calls from the Go code on Ma...Pietro Gagliardi
2014-05-15Migrated everything else to Objective-C native; fixed a few things I missed a...Pietro Gagliardi
2014-05-13Removed the class creation at runtime stuff and its residue from the Go files...Pietro Gagliardi
2014-05-13Moved uitask_darwin.go to be Objective-C-based. Both delegate_darwin.go and u...Pietro Gagliardi
2014-05-13Started conversion of delegate_darwin.go to use Objective-C directly.Pietro Gagliardi
2014-04-07Split out the common resizing code into its own function so that it's all in ...Pietro Gagliardi
2014-04-07Fixed AppQuit on Mac OS X (forgot to set the NSApp delegate AND was using the...Pietro Gagliardi
2014-04-06Added (untested; VM issues) code to handle Mac OS X Quit Dock menu items and ...Pietro Gagliardi
2014-04-04Changed the way drawRect: was being added to our Mac OS X Area such that we n...Pietro Gagliardi
2014-04-04Changed the Area class on Mac OS X to use the new class creation code. This g...Pietro Gagliardi
2014-04-04Created a new, simpler, easier to work with, and consistent way to create the...Pietro Gagliardi
2014-04-04Removed objc_new(). The idea is to remove all the objc_* functions that aren'...Pietro Gagliardi
2014-03-30When we created our delegate and view classes on Mac OS X, it turned out we w...Pietro Gagliardi
2014-03-29Added the beginning of the Mac OS X Area implementation. Also fixed the long-...Pietro Gagliardi
2014-03-17Changed the new resizing code so that it uses the same allocated slice per wi...Pietro Gagliardi
2014-03-17Changed window resizes so that the actual Control.setRect() functions appende...Pietro Gagliardi
2014-03-12Separated file creation dates from the package comment.Pietro Gagliardi
2014-03-11More TODO reduction.Pietro Gagliardi
2014-03-03Fixed Mac OS X control placement flipping. This is done by passing the height...Pietro Gagliardi
2014-03-02Fixed incorrect object placement by using the window's content rect, not the ...Pietro Gagliardi
2014-03-02Fixed incorrect redrawing of Mac OS X windows after resize. Still need to fix...Pietro Gagliardi
2014-03-01Added Mac OS X Buttons. Code hangs due to a preferredSize() issue...Pietro Gagliardi
2014-03-01Added windowDidResize: to the Mac OS X delegate for resizing windows. Now to ...Pietro Gagliardi
2014-03-01Cleaned up loose ends with the previous commit and got window close events wo...Pietro Gagliardi
2014-03-01Fixed most errors. Now I just need to add a sysData pool.Pietro Gagliardi
2014-03-01Started to build a single global delegate object; now to fix issues.Pietro Gagliardi