diff dstep/foundation/NSScriptCommandDescription.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/NSScriptCommandDescription.d	Mon Aug 03 15:23:15 2009 +0200
@@ -0,0 +1,123 @@
+/**
+ * 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.NSScriptCommandDescription;
+
+import dstep.foundation.NSArray;
+import dstep.foundation.NSDictionary;
+import dstep.foundation.NSObject;
+import dstep.foundation.NSScriptCommand;
+import dstep.foundation.NSString;
+import dstep.objc.bridge.Bridge;
+import dstep.objc.objc : id;
+
+class NSScriptCommandDescription : NSObject, INSCoding
+{
+	mixin ObjcWrap;
+
+	Object initWithSuiteName (NSString suiteName, NSString commandName, NSDictionary commandDeclaration)
+	{
+		return invokeObjcSelf!(Object, "initWithSuiteName:commandName:dictionary:", NSString, NSString, NSDictionary)(suiteName, commandName, commandDeclaration);
+	}
+
+	this (NSString suiteName, NSString commandName, NSDictionary commandDeclaration)
+	{
+		objcObject = Bridge.invokeObjcClassMethod!(id, "alloc")(objcClass);
+		id result = Bridge.invokeObjcMethod!(id, "initWithSuiteName:commandName:dictionary:", NSString, NSString, NSDictionary)(objcObject, suiteName, commandName, commandDeclaration);
+
+		if (result)
+			objcObject = ret;
+
+		dObject = this;
+	}
+
+	NSString suiteName ()
+	{
+		return invokeObjcSelf!(NSString, "suiteName");
+	}
+
+	NSString commandName ()
+	{
+		return invokeObjcSelf!(NSString, "commandName");
+	}
+
+	uint appleEventClassCode ()
+	{
+		return invokeObjcSelf!(uint, "appleEventClassCode");
+	}
+
+	uint appleEventCode ()
+	{
+		return invokeObjcSelf!(uint, "appleEventCode");
+	}
+
+	NSString commandClassName ()
+	{
+		return invokeObjcSelf!(NSString, "commandClassName");
+	}
+
+	NSString returnType ()
+	{
+		return invokeObjcSelf!(NSString, "returnType");
+	}
+
+	uint appleEventCodeForReturnType ()
+	{
+		return invokeObjcSelf!(uint, "appleEventCodeForReturnType");
+	}
+
+	NSArray argumentNames ()
+	{
+		return invokeObjcSelf!(NSArray, "argumentNames");
+	}
+
+	NSString typeForArgumentWithName (NSString argumentName)
+	{
+		return invokeObjcSelf!(NSString, "typeForArgumentWithName:", NSString)(argumentName);
+	}
+
+	uint appleEventCodeForArgumentWithName (NSString argumentName)
+	{
+		return invokeObjcSelf!(uint, "appleEventCodeForArgumentWithName:", NSString)(argumentName);
+	}
+
+	bool isOptionalArgumentWithName (NSString argumentName)
+	{
+		return invokeObjcSelf!(bool, "isOptionalArgumentWithName:", NSString)(argumentName);
+	}
+
+	NSScriptCommand createCommandInstance ()
+	{
+		return invokeObjcSelf!(NSScriptCommand, "createCommandInstance");
+	}
+
+	NSScriptCommand createCommandInstanceWithZone (NSZone* zone)
+	{
+		return invokeObjcSelf!(NSScriptCommand, "createCommandInstanceWithZone:", 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;
+	}
+}
+