view dstep/foundation/NSInvocation.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 7ff919f595d5
children b9de51448c6b
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.NSInvocation;

import dstep.foundation.NSMethodSignature;
import dstep.foundation.NSObjCRuntime;
import dstep.foundation.NSObject;
import dstep.objc.bridge.Bridge;
import dstep.objc.objc;

class NSInvocation : NSObject
{
	mixin (ObjcWrap);
	
	this ()
	{
		super(typeof(this).alloc.init.objcObject);
	}
	
	typeof(this) init ()
	{
		return invokeObjcSelf!(typeof(this), "init");
	}

	static NSInvocation invocationWithMethodSignature (NSMethodSignature sig)
	{
		return invokeObjcSuperClass!(NSInvocation, "invocationWithMethodSignature:", NSMethodSignature)(sig);
	}

	NSMethodSignature methodSignature ()
	{
		return invokeObjcSelf!(NSMethodSignature, "methodSignature");
	}

	void retainArguments ()
	{
		return invokeObjcSelf!(void, "retainArguments");
	}

	bool argumentsRetained ()
	{
		return invokeObjcSelf!(bool, "argumentsRetained");
	}

	Object target ()
	{
		return invokeObjcSelf!(Object, "target");
	}

	void setTarget (Object target)
	{
		return invokeObjcSelf!(void, "setTarget:", Object)(target);
	}

	SEL selector ()
	{
		return invokeObjcSelf!(SEL, "selector");
	}

	void setSelector (SEL selector)
	{
		return invokeObjcSelf!(void, "setSelector:", SEL)(selector);
	}

	void getReturnValue (void* retLoc)
	{
		return invokeObjcSelf!(void, "getReturnValue:", void*)(retLoc);
	}

	void setReturnValue (void* retLoc)
	{
		return invokeObjcSelf!(void, "setReturnValue:", void*)(retLoc);
	}

	void getArgument (void* argumentLocation, NSInteger idx)
	{
		return invokeObjcSelf!(void, "getArgument:atIndex:", void*, NSInteger)(argumentLocation, idx);
	}

	void setArgument (void* argumentLocation, NSInteger idx)
	{
		return invokeObjcSelf!(void, "setArgument:atIndex:", void*, NSInteger)(argumentLocation, idx);
	}

	void invoke ()
	{
		return invokeObjcSelf!(void, "invoke");
	}

	void invokeWithTarget (Object target)
	{
		return invokeObjcSelf!(void, "invokeWithTarget:", Object)(target);
	}
}