diff dstep/foundation/NSNotification.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/NSNotification.d	Mon Aug 03 15:23:15 2009 +0200
@@ -0,0 +1,114 @@
+/**
+ * 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.NSNotification;
+
+import dstep.foundation.NSDictionary;
+import dstep.foundation.NSObject;
+import dstep.foundation.NSString;
+import dstep.objc.bridge.Bridge;
+import dstep.objc.objc : id;
+
+class NSNotification : NSObject, INSCopying, INSCoding
+{
+	mixin ObjcWrap;
+	mixin TNSNotificationCreation;
+
+	NSString name ()
+	{
+		return invokeObjcSelf!(NSString, "name");
+	}
+
+	Object object ()
+	{
+		return invokeObjcSelf!(Object, "object");
+	}
+
+	NSDictionary userInfo ()
+	{
+		return invokeObjcSelf!(NSDictionary, "userInfo");
+	}
+
+	Object copyWithZone (NSZone* zone)
+	{
+		return invokeObjcSelf!(Object, "copyWithZone:", NSZone*)(zone);
+	}
+
+	void encodeWithCoder (NSCoder aCoder)
+	{
+		return invokeObjcSelf!(void, "encodeWithCoder:", NSCoder)(aCoder);
+	}
+
+	Object initWithCoder (NSCoder aDecoder)
+	{
+		return invokeObjcSelf!(Object, "initWithCoder:", NSCoder)(aDecoder);
+	}
+
+	this (NSCoder aDecoder)
+	{
+		objcObject = Bridge.invokeObjcClassMethod!(id, "alloc")(objcClass);
+		id result = Bridge.invokeObjcMethod!(id, "initWithCoder:", NSCoder)(objcObject, aDecoder);
+
+		if (result)
+			objcObject = ret;
+
+		dObject = this;
+	}
+}
+
+class NSNotificationCenter : NSObject
+{
+	mixin ObjcWrap;
+
+	static Object defaultCenter ()
+	{
+		return invokeObjcSelfClass!(Object, "defaultCenter");
+	}
+
+	void addObserver (Object observer, SEL aSelector, NSString aName, Object anObject)
+	{
+		return invokeObjcSelf!(void, "addObserver:selector:name:object:", Object, SEL, NSString, Object)(observer, aSelector, aName, anObject);
+	}
+
+	void postNotification (NSNotification notification)
+	{
+		return invokeObjcSelf!(void, "postNotification:", NSNotification)(notification);
+	}
+
+	void postNotificationName (NSString aName, Object anObject)
+	{
+		return invokeObjcSelf!(void, "postNotificationName:object:", NSString, Object)(aName, anObject);
+	}
+
+	void postNotificationName (NSString aName, Object anObject, NSDictionary aUserInfo)
+	{
+		return invokeObjcSelf!(void, "postNotificationName:object:userInfo:", NSString, Object, NSDictionary)(aName, anObject, aUserInfo);
+	}
+
+	void removeObserver (Object observer)
+	{
+		return invokeObjcSelf!(void, "removeObserver:", Object)(observer);
+	}
+
+	void removeObserver (Object observer, NSString aName, Object anObject)
+	{
+		return invokeObjcSelf!(void, "removeObserver:name:object:", Object, NSString, Object)(observer, aName, anObject);
+	}
+}
+
+template TNSNotificationCreation ()
+{
+	static Object notificationWithName (NSString aName, Object anObject)
+	{
+		return invokeObjcSelfClass!(Object, "notificationWithName:object:", NSString, Object)(aName, anObject);
+	}
+
+	static Object notificationWithName (NSString aName, Object anObject, NSDictionary aUserInfo)
+	{
+		return invokeObjcSelfClass!(Object, "notificationWithName:object:userInfo:", NSString, Object, NSDictionary)(aName, anObject, aUserInfo);
+	}
+}
+