diff dstep/appkit/NSStepper.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 b9de51448c6b
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dstep/appkit/NSStepper.d	Sun Jan 03 22:06:11 2010 +0100
@@ -0,0 +1,67 @@
+/**
+ * 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.NSStepper;
+
+import dstep.appkit.NSControl;
+import dstep.objc.bridge.Bridge;
+import dstep.objc.objc;
+
+class NSStepper : NSControl
+{
+	mixin (ObjcWrap);
+
+	double minValue ()
+	{
+		return invokeObjcSelf!(double, "minValue");
+	}
+
+	void setMinValue (double minValue)
+	{
+		return invokeObjcSelf!(void, "setMinValue:", double)(minValue);
+	}
+
+	double maxValue ()
+	{
+		return invokeObjcSelf!(double, "maxValue");
+	}
+
+	void setMaxValue (double maxValue)
+	{
+		return invokeObjcSelf!(void, "setMaxValue:", double)(maxValue);
+	}
+
+	double increment ()
+	{
+		return invokeObjcSelf!(double, "increment");
+	}
+
+	void setIncrement (double increment)
+	{
+		return invokeObjcSelf!(void, "setIncrement:", double)(increment);
+	}
+
+	bool valueWraps ()
+	{
+		return invokeObjcSelf!(bool, "valueWraps");
+	}
+
+	void setValueWraps (bool valueWraps)
+	{
+		return invokeObjcSelf!(void, "setValueWraps:", bool)(valueWraps);
+	}
+
+	bool autorepeat ()
+	{
+		return invokeObjcSelf!(bool, "autorepeat");
+	}
+
+	void setAutorepeat (bool autorepeat)
+	{
+		return invokeObjcSelf!(void, "setAutorepeat:", bool)(autorepeat);
+	}
+}
+