diff dwt/internal/cocoa/NSStepper.d @ 45:d8635bb48c7c

Merge with SWT 3.5
author Jacob Carlborg <doob@me.com>
date Mon, 01 Dec 2008 17:07:00 +0100
parents f565d3a95c0a
children
line wrap: on
line diff
--- a/dwt/internal/cocoa/NSStepper.d	Tue Oct 21 15:20:04 2008 +0200
+++ b/dwt/internal/cocoa/NSStepper.d	Mon Dec 01 17:07:00 2008 +0100
@@ -1,83 +1,72 @@
 /*******************************************************************************
- * Copyright (c) 2007 IBM Corporation and others.
+ * Copyright (c) 2000, 2008 IBM Corporation and others.
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
  *
  * Contributors:
- *     IBM Corporation - initial API and implementation
+ *    IBM Corporation - initial API and implementation
  *     
  * Port to the D programming language:
- *     Jacob Carlborg <jacob.carlborg@gmail.com>
+ *    Jacob Carlborg <doob@me.com>
  *******************************************************************************/
 module dwt.internal.cocoa.NSStepper;
 
+import dwt.dwthelper.utils;
+import cocoa = dwt.internal.cocoa.id;
 import dwt.internal.cocoa.NSControl;
 import dwt.internal.cocoa.OS;
 import objc = dwt.internal.objc.runtime;
 
-public class NSStepper : NSControl
-{
+public class NSStepper : NSControl {
 
-    public this ()
-    {
-        super();
-    }
+public this() {
+    super();
+}
 
-    public this (objc.id id)
-    {
-        super(id);
-    }
+public this(objc.id id) {
+    super(id);
+}
 
-    public bool autorepeat ()
-    {
-        return OS.objc_msgSend(this.id_, OS.sel_autorepeat) !is null;
-    }
+public this(cocoa.id id) {
+    super(id);
+}
 
-    public double increment ()
-    {
-        return OS.objc_msgSend_fpret(this.id_, OS.sel_increment);
-    }
+public double increment() {
+    return OS.objc_msgSend_fpret(this.id, OS.sel_increment);
+}
 
-    public double maxValue ()
-    {
-        return OS.objc_msgSend_fpret(this.id_, OS.sel_maxValue);
-    }
+public double maxValue() {
+    return OS.objc_msgSend_fpret(this.id, OS.sel_maxValue);
+}
 
-    public double minValue ()
-    {
-        return OS.objc_msgSend_fpret(this.id_, OS.sel_minValue);
-    }
+public double minValue() {
+    return OS.objc_msgSend_fpret(this.id, OS.sel_minValue);
+}
 
-    public void setAutorepeat (bool autorepeat)
-    {
-        OS.objc_msgSend(this.id_, OS.sel_setAutorepeat_1, autorepeat);
-    }
+public void setIncrement(double increment) {
+    OS.objc_msgSend(this.id, OS.sel_setIncrement_, increment);
+}
 
-    public void setIncrement (double increment)
-    {
-        OS.objc_msgSend(this.id_, OS.sel_setIncrement_1, increment);
-    }
+public void setMaxValue(double maxValue) {
+    OS.objc_msgSend(this.id, OS.sel_setMaxValue_, maxValue);
+}
 
-    public void setMaxValue (double maxValue)
-    {
-        OS.objc_msgSend(this.id_, OS.sel_setMaxValue_1, maxValue);
-    }
+public void setMinValue(double minValue) {
+    OS.objc_msgSend(this.id, OS.sel_setMinValue_, minValue);
+}
 
-    public void setMinValue (double minValue)
-    {
-        OS.objc_msgSend(this.id_, OS.sel_setMinValue_1, minValue);
-    }
+public void setValueWraps(bool valueWraps) {
+    OS.objc_msgSend(this.id, OS.sel_setValueWraps_, valueWraps);
+}
 
-    public void setValueWraps (bool valueWraps)
-    {
-        OS.objc_msgSend(this.id_, OS.sel_setValueWraps_1, valueWraps);
-    }
+public static objc.Class cellClass() {
+    return cast(objc.Class) OS.objc_msgSend(OS.class_NSStepper, OS.sel_cellClass);
+}
 
-    public bool valueWraps ()
-    {
-        return OS.objc_msgSend(this.id_, OS.sel_valueWraps) !is null;
-    }
+public static void setCellClass(objc.Class factoryId) {
+    OS.objc_msgSend(OS.class_NSStepper, OS.sel_setCellClass_, factoryId);
+}
 
 }