summaryrefslogtreecommitdiff
path: root/objc_darwin.m
AgeCommit message (Collapse)Author
2014-07-02Moved 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-02Moved everything out of the way pending rewrite.Pietro Gagliardi
2014-06-11Removed Mac OS X 10.6 support. Quite a hassle that version was...Pietro Gagliardi
2014-06-07Fixed all the NSAutoreleasePool issues on Mac OS X 10.6.Pietro Gagliardi
2014-06-07Got rid of some of the autorelease pool warnings by creating a temporary ↵Pietro Gagliardi
pool for each call to toNSString().
2014-05-20Fixed the whole NSApplication.h thing so now the project builds with both ↵Pietro Gagliardi
10.6 and 10.8. Ugh.
2014-05-20Changed #include to #import on the Objective-C files to settle the whole ↵Pietro Gagliardi
include guards thing. Now to continue fixing Mac OS X 10.6 building...
2014-05-20Fixed the Mac OS X 10.6 building using a rather hackish approach... Now it ↵Pietro Gagliardi
won't build on 10.6 itself without problems, so...
2014-05-17Made drawing of NSScrollView backgrounds explicit on Mac OS X. This is what ↵Pietro Gagliardi
Interface Builder sets for NSTableViews, so we do that too for Listbox. This also means NSScrollView draws the background for our Areas, settling the clear clip rect TODO.
2014-05-16Organized the dummyRect declarations/definitions/etc. in the Objective-C ↵Pietro Gagliardi
files. I think that's it for the Objective-C conversion of the Mac OS X code!
2014-05-16Whoops, forgot to add objc_darwin.m to git!Pietro Gagliardi