view dstep/appkit/NSTextStorageScripting.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
children
line wrap: on
line source

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

import dstep.appkit.NSTextStorage;
import dstep.objc.bridge.Bridge;
import dstep.objc.objc;

const TScripting = `
			
	NSArray attributeRuns ()
	{
		return invokeObjcSelf!(NSArray, "attributeRuns");
	}

	void setAttributeRuns (NSArray attributeRuns)
	{
		return invokeObjcSelf!(void, "setAttributeRuns:", NSArray)(attributeRuns);
	}

	NSArray paragraphs ()
	{
		return invokeObjcSelf!(NSArray, "paragraphs");
	}

	void setParagraphs (NSArray paragraphs)
	{
		return invokeObjcSelf!(void, "setParagraphs:", NSArray)(paragraphs);
	}

	NSArray words ()
	{
		return invokeObjcSelf!(NSArray, "words");
	}

	void setWords (NSArray words)
	{
		return invokeObjcSelf!(void, "setWords:", NSArray)(words);
	}

	NSArray characters ()
	{
		return invokeObjcSelf!(NSArray, "characters");
	}

	void setCharacters (NSArray characters)
	{
		return invokeObjcSelf!(void, "setCharacters:", NSArray)(characters);
	}

	NSFont font ()
	{
		return invokeObjcSelf!(NSFont, "font");
	}

	void setFont (NSFont font)
	{
		return invokeObjcSelf!(void, "setFont:", NSFont)(font);
	}

	NSColor foregroundColor ()
	{
		return invokeObjcSelf!(NSColor, "foregroundColor");
	}

	void setForegroundColor (NSColor color)
	{
		return invokeObjcSelf!(void, "setForegroundColor:", NSColor)(color);
	}

	//mixin ObjcBindMethod!(attributeRuns, "attributeRuns");
	//mixin ObjcBindMethod!(setAttributeRuns, "setAttributeRuns:");
	//mixin ObjcBindMethod!(paragraphs, "paragraphs");
	//mixin ObjcBindMethod!(setParagraphs, "setParagraphs:");
	//mixin ObjcBindMethod!(words, "words");
	//mixin ObjcBindMethod!(setWords, "setWords:");
	//mixin ObjcBindMethod!(characters, "characters");
	//mixin ObjcBindMethod!(setCharacters, "setCharacters:");
	//mixin ObjcBindMethod!(font, "font");
	//mixin ObjcBindMethod!(setFont, "setFont:");
	//mixin ObjcBindMethod!(foregroundColor, "foregroundColor");
	//mixin ObjcBindMethod!(setForegroundColor, "setForegroundColor:");

`;