view dstep/qtkit/QTCaptureLayer.d @ 27:57371c29ef73 default tip

ObjcWrap is now automatically mixed in. Added support for building as a dylib with DMD.
author Jacob Carlborg <doob@me.com>
date Fri, 09 Apr 2010 23:00:22 +0200
parents b9de51448c6b
children
line wrap: on
line source

/**
 * Copyright: Copyright (c) 2009 Jacob Carlborg.
 * Authors: Jacob Carlborg
 * Version: Initial created: Sep 28, 2009 
 * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0)
 */
module dstep.qtkit.QTCaptureLayer;

import dstep.foundation.Foundation;
import dstep.objc.bridge.Bridge;
import dstep.objc.objc;
import dstep.qtkit.QTCaptureSession;
import dstep.qtkit.QTKitDefines;
import dstep.quartzcore.CALayer;
import dstep.quartzcore.QuartzCore;

class QTCaptureLayer : CALayer
{
	mixin ObjcWrap;
	
	this (id object)
	{
		super(object);
	}

	static Object layerWithSession (QTCaptureSession session)
	{
		return invokeObjcSelfClass!(Object, "layerWithSession:", QTCaptureSession)(session);
	}

	QTCaptureLayer initWithSession (QTCaptureSession session)
	{
		id result = invokeObjcSelf!(id, "initWithSession:", QTCaptureSession)(session);
		return result is this.objcObject ? this : (result !is null ? new QTCaptureLayer(result) : null);
	}

	this (QTCaptureSession session)
	{
		super(QTCaptureLayer.alloc.initWithSession(session).objcObject);
	}

	void setSession (QTCaptureSession session)
	{
		return invokeObjcSelf!(void, "setSession:", QTCaptureSession)(session);
	}

	QTCaptureSession session ()
	{
		return invokeObjcSelf!(QTCaptureSession, "session");
	}
}