view dstep/foundation/NSAffineTransform.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.NSAffineTransform;

import dstep.applicationservices.coregraphics.CGAffineTransform;
import dstep.applicationservices.coregraphics.CGBase;
import dstep.foundation.NSCoder;
import dstep.foundation.NSGeometry;
import dstep.foundation.NSObject;
import dstep.foundation.NSZone;
import dstep.objc.bridge.Bridge;
import dstep.objc.objc;

struct NSAffineTransformStruct
{
	CGFloat m11;
	CGFloat m12;
	CGFloat m21;
	CGFloat m22;
	CGFloat tX;
	CGFloat tY;
}

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

	static NSAffineTransform transform ()
	{
		return invokeObjcSuperClass!(NSAffineTransform, "transform");
	}

	Object initWithTransform (NSAffineTransform transform)
	{
		return invokeObjcSelf!(Object, "initWithTransform:", NSAffineTransform)(transform);
	}

	this (NSAffineTransform transform)
	{
		typeof(this).alloc.initWithTransform(transform);
	}

	void translateXBy (CGFloat deltaX, CGFloat deltaY)
	{
		return invokeObjcSelf!(void, "translateXBy:yBy:", CGFloat, CGFloat)(deltaX, deltaY);
	}

	void rotateByDegrees (CGFloat angle)
	{
		return invokeObjcSelf!(void, "rotateByDegrees:", CGFloat)(angle);
	}

	void rotateByRadians (CGFloat angle)
	{
		return invokeObjcSelf!(void, "rotateByRadians:", CGFloat)(angle);
	}

	void scaleBy (CGFloat scale)
	{
		return invokeObjcSelf!(void, "scaleBy:", CGFloat)(scale);
	}

	void scaleXBy (CGFloat scaleX, CGFloat scaleY)
	{
		return invokeObjcSelf!(void, "scaleXBy:yBy:", CGFloat, CGFloat)(scaleX, scaleY);
	}

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

	void appendTransform (NSAffineTransform transform)
	{
		return invokeObjcSelf!(void, "appendTransform:", NSAffineTransform)(transform);
	}

	void prependTransform (NSAffineTransform transform)
	{
		return invokeObjcSelf!(void, "prependTransform:", NSAffineTransform)(transform);
	}

	NSPoint transformPoint (NSPoint aPoint)
	{
		return invokeObjcSelf!(NSPoint, "transformPoint:", NSPoint)(aPoint);
	}

	NSSize transformSize (NSSize aSize)
	{
		return invokeObjcSelf!(NSSize, "transformSize:", NSSize)(aSize);
	}

	NSAffineTransformStruct transformStruct ()
	{
		return invokeObjcSelf!(NSAffineTransformStruct, "transformStruct");
	}

	void setTransformStruct (NSAffineTransformStruct transformStruct)
	{
		return invokeObjcSelf!(void, "setTransformStruct:", NSAffineTransformStruct)(transformStruct);
	}

	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)
	{
		typeof(this).alloc.initWithCoder(aDecoder);
	}
}