diff dstep/foundation/NSPortMessage.d @ 16:19885b43130e

Huge update, the bridge actually works now
author Jacob Carlborg <doob@me.com>
date Sun, 03 Jan 2010 22:06:11 +0100
parents 89f3c3ef1fd2
children b9de51448c6b
line wrap: on
line diff
--- a/dstep/foundation/NSPortMessage.d	Mon Aug 03 15:31:48 2009 +0200
+++ b/dstep/foundation/NSPortMessage.d	Sun Jan 03 22:06:11 2010 +0100
@@ -8,15 +8,24 @@
 
 import dstep.foundation.NSArray;
 import dstep.foundation.NSDate;
-import dstep.foundation.NSMutableArray;
 import dstep.foundation.NSObject;
 import dstep.foundation.NSPort;
 import dstep.objc.bridge.Bridge;
-import dstep.objc.objc : id;
+import dstep.objc.objc;
 
 class NSPortMessage : NSObject
 {
-	mixin ObjcWrap;
+	mixin (ObjcWrap);
+	
+	this ()
+	{
+		super(typeof(this).alloc.init.objcObject);
+	}
+	
+	typeof(this) init ()
+	{
+		return invokeObjcSelf!(typeof(this), "init");
+	}
 
 	Object initWithSendPort (NSPort sendPort, NSPort replyPort, NSArray components)
 	{
@@ -25,13 +34,7 @@
 
 	this (NSPort sendPort, NSPort replyPort, NSArray components)
 	{
-		objcObject = Bridge.invokeObjcClassMethod!(id, "alloc")(objcClass);
-		id result = Bridge.invokeObjcMethod!(id, "initWithSendPort:receivePort:components:", NSPort, NSPort, NSArray)(objcObject, sendPort, replyPort, components);
-
-		if (result)
-			objcObject = ret;
-
-		dObject = this;
+		typeof(this).alloc.initWithSendPort(sendPort, replyPort, components);
 	}
 
 	NSArray components ()