X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=blobdiff_plain;f=src%2Forg%2Fibex%2Fplat%2FDarwin.cc;h=ed01572dd16211ff5d64fdc97ad1040606433bb4;hp=0ce47ac0215f327c763772714529bc414e9d4793;hb=297fdbde87e6db4732448a0950d1141c7265c169;hpb=b857cf06b4b1fe9a5f6200728cc1e5f94903b05a diff --git a/src/org/ibex/plat/Darwin.cc b/src/org/ibex/plat/Darwin.cc index 0ce47ac..ed01572 100644 --- a/src/org/ibex/plat/Darwin.cc +++ b/src/org/ibex/plat/Darwin.cc @@ -18,6 +18,7 @@ #include #include +#include #include #include #include @@ -256,9 +257,9 @@ class SmartCFString { }; // CHECKME: Is just making up your own four char codes really correct? -const static UInt32 kEventClassCarbonMessage = 'ibexa'; -const static UInt32 kEventCarbonMessage = 'ibexb'; -const static UInt32 kEventParamCarbonMessage = 'ibexc'; +const static UInt32 kEventClassCarbonMessage = 'ibxa'; +const static UInt32 kEventCarbonMessage = 'ibxb'; +const static UInt32 kEventParamCarbonMessage = 'ibxc'; static OSStatus carbonMessageEventHandler(EventHandlerCallRef handler, EventRef e, void *userData); static EventHandlerUPP carbonMessageEventHandlerUPP; @@ -702,7 +703,7 @@ static OSStatus paintProc ( Darwin$CarbonSurface *surface = (Darwin$CarbonSurface*) userData; Rect rect; WC(GetRegionBounds)(inClientPaintRgn, &rect); - surface->Dirty(rect.left,rect.top,rect.right-rect.left,rect.bottom-rect.top); + surface->dirty(rect.left,rect.top,rect.right-rect.left,rect.bottom-rect.top); return noErr; } @@ -715,9 +716,9 @@ void Darwin$CarbonSurface::natInit(jboolean framed) { WindowAttributes attr = kWindowStandardHandlerAttribute| (framed ? kWindowInWindowMenuAttribute|kWindowStandardDocumentAttributes|kWindowLiveResizeAttribute : 0); OSStatus r; - rect.top = rect.left = 0; - rect.bottom = rect.right = 10; - winWidth = winHeight = 10; + rect.top = rect.left = 100; + rect.bottom = rect.right = 200; + winWidth = winHeight = 100; r = WC(CreateNewWindow)(wc, attr, &rect, &window); checkStatus(r,"CreateNewWindow"); @@ -740,7 +741,7 @@ void Darwin$CarbonSurface::natDispose() { WC(DisposeWindow)(window); } -void Darwin$CarbonSurface::natSetIcon(org::ibex::Picture *_p) { +void Darwin$CarbonSurface::natSetIcon(org::ibex::graphics::Picture *_p) { } void Darwin$CarbonSurface::natSetLocation() { @@ -889,9 +890,8 @@ void Darwin::natSetClipBoard(jstring js) { checkStatus(r,"PutScrapFlavor"); } -HTTP$Proxy *Darwin::natDetectProxy() { - using org::ibex::HTTP$Proxy; - HTTP$Proxy *p=0; +org::ibex::net::HTTP$Proxy *Darwin::natDetectProxy() { + org::ibex::net::HTTP$Proxy *p=0; CFStringRef string; CFNumberRef number; SmartCFString smartString; @@ -910,7 +910,7 @@ HTTP$Proxy *Darwin::natDetectProxy() { number = (CFNumberRef) WC(CFDictionaryGetValue)(proxyInfo, kSCPropNetProxies ## proto ## Port); \ if(number != NULL && WC(CFGetTypeID)(number) != WC(CFNumberGetTypeID)()) number = NULL; \ if(string && number && WC(CFNumberGetValue)(number,kCFNumberIntType,&i) && i) { \ - if(!p) p = new HTTP$Proxy(); \ + if(!p) p = new org::ibex::net::HTTP$Proxy(); \ p->var ## ProxyHost = cfStringToJString(string); \ p->var ## ProxyPort = i; \ } \ @@ -1140,6 +1140,12 @@ void Darwin$GLCarbonPixelBuffer::activateContext() { WC(aglSetCurrentContext)(ctx); } +void Darwin$GLCarbonSurface$GLCarbonSurfacePixelBuffer::activateContext() { + // hooray for Brian's forward-thinking design abstractions, because I have no idea what the fuck this does, but it works + AGLContext ctx = (AGLContext) rawCTX; + WC(aglSetCurrentContext)(ctx); +} + void Darwin$GLCarbonPixelBuffer::natCleanup(RawData* rawWindowRef, RawData* rawCTX) { WindowRef window = (WindowRef) rawWindowRef; AGLContext ctx = (AGLContext) rawCTX;