diff dstep/foundation/NSProtocolChecker.d @ 14:89f3c3ef1fd2

Added the Foundation framework
author Jacob Carlborg <doob@me.com>
date Mon, 03 Aug 2009 15:23:15 +0200
parents
children 19885b43130e
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dstep/foundation/NSProtocolChecker.d	Mon Aug 03 15:23:15 2009 +0200
@@ -0,0 +1,53 @@
+/**
+ * Copyright: Copyright (c) 2009 Jacob Carlborg.
+ * Authors: Jacob Carlborg
+ * Version: Initial created: Aug 3, 2009 
+ * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0)
+ */
+module dstep.foundation.NSProtocolChecker;
+
+import dstep.foundation.NSObject;
+import dstep.foundation.NSProxy;
+import dstep.objc.bridge.Bridge;
+import dstep.objc.objc : id;
+
+class NSProtocolChecker : NSProxy
+{
+	mixin ObjcWrap;
+	mixin TNSProtocolCheckerCreation;
+
+	Protocol protocol ()
+	{
+		return invokeObjcSelf!(Protocol, "protocol");
+	}
+
+	NSObject target ()
+	{
+		return invokeObjcSelf!(NSObject, "target");
+	}
+}
+
+template TNSProtocolCheckerCreation ()
+{
+	static Object protocolCheckerWithTarget (NSObject anObject, Protocol aProtocol)
+	{
+		return invokeObjcSelfClass!(Object, "protocolCheckerWithTarget:protocol:", NSObject, Protocol)(anObject, aProtocol);
+	}
+
+	Object initWithTarget (NSObject anObject, Protocol aProtocol)
+	{
+		return invokeObjcSelf!(Object, "initWithTarget:protocol:", NSObject, Protocol)(anObject, aProtocol);
+	}
+
+	this (NSObject anObject, Protocol aProtocol)
+	{
+		objcObject = Bridge.invokeObjcClassMethod!(id, "alloc")(objcClass);
+		id result = Bridge.invokeObjcMethod!(id, "initWithTarget:protocol:", NSObject, Protocol)(objcObject, anObject, aProtocol);
+
+		if (result)
+			objcObject = ret;
+
+		dObject = this;
+	}
+}
+