view dstep/foundation/NSDistantObject.d @ 15:7ff919f595d5

Added the Foundation framework, again
author Jacob Carlborg <doob@me.com>
date Mon, 03 Aug 2009 15:31:48 +0200
parents 89f3c3ef1fd2
children 19885b43130e
line wrap: on
line source

/**
 * 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.NSDistantObject;

import dstep.foundation.NSCoder;
import dstep.foundation.NSConnection;
import dstep.foundation.NSProxy;
import dstep.foundation.Protocol;
import dstep.objc.bridge.Bridge;
import dstep.objc.objc : id;

class NSDistantObject : NSProxy, INSCoding
{
	mixin ObjcWrap;

	static NSDistantObject proxyWithTarget (Object target, NSConnection connection)
	{
		return invokeObjcSelfClass!(NSDistantObject, "proxyWithTarget:connection:", Object, NSConnection)(target, connection);
	}

	Object initWithTarget (Object target, NSConnection connection)
	{
		return invokeObjcSelf!(Object, "initWithTarget:connection:", Object, NSConnection)(target, connection);
	}

	this (Object target, NSConnection connection)
	{
		objcObject = Bridge.invokeObjcClassMethod!(id, "alloc")(objcClass);
		id result = Bridge.invokeObjcMethod!(id, "initWithTarget:connection:", Object, NSConnection)(objcObject, target, connection);

		if (result)
			objcObject = ret;

		dObject = this;
	}

	static NSDistantObject proxyWithLocal (Object target, NSConnection connection)
	{
		return invokeObjcSelfClass!(NSDistantObject, "proxyWithLocal:connection:", Object, NSConnection)(target, connection);
	}

	Object initWithLocal (Object target, NSConnection connection)
	{
		return invokeObjcSelf!(Object, "initWithLocal:connection:", Object, NSConnection)(target, connection);
	}

	this (Object target, NSConnection connection)
	{
		objcObject = Bridge.invokeObjcClassMethod!(id, "alloc")(objcClass);
		id result = Bridge.invokeObjcMethod!(id, "initWithLocal:connection:", Object, NSConnection)(objcObject, target, connection);

		if (result)
			objcObject = ret;

		dObject = this;
	}

	void setProtocolForProxy (Protocol proto)
	{
		return invokeObjcSelf!(void, "setProtocolForProxy:", Protocol)(proto);
	}

	NSConnection connectionForProxy ()
	{
		return invokeObjcSelf!(NSConnection, "connectionForProxy");
	}

	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;
	}
}