diff dwt/internal/cocoa/NSSearchField.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/NSSearchField.d	Tue Oct 21 15:20:04 2008 +0200
+++ b/dwt/internal/cocoa/NSSearchField.d	Mon Dec 01 17:07:00 2008 +0100
@@ -1,57 +1,50 @@
 /*******************************************************************************
- * 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.NSSearchField;
 
+import dwt.dwthelper.utils;
+import cocoa = dwt.internal.cocoa.id;
 import dwt.internal.cocoa.NSArray;
-import dwt.internal.cocoa.NSString;
 import dwt.internal.cocoa.NSTextField;
 import dwt.internal.cocoa.OS;
 import objc = dwt.internal.objc.runtime;
 
-public class NSSearchField : NSTextField
-{
+public class NSSearchField : NSTextField {
 
-    public this ()
-    {
-        super();
-    }
+public this() {
+    super();
+}
 
-    public this (objc.id id)
-    {
-        super(id);
-    }
+public this(objc.id id) {
+    super(id);
+}
 
-    public NSArray recentSearches ()
-    {
-        objc.id result = OS.objc_msgSend(this.id_, OS.sel_recentSearches);
-        return result !is null ? new NSArray(result) : null;
-    }
+public this(cocoa.id id) {
+    super(id);
+}
 
-    public NSString recentsAutosaveName ()
-    {
-        objc.id result = OS.objc_msgSend(this.id_, OS.sel_recentsAutosaveName);
-        return result !is null ? new NSString(result) : null;
-    }
+public NSArray recentSearches() {
+    objc.id result = OS.objc_msgSend(this.id, OS.sel_recentSearches);
+    return result !is null ? new NSArray(result) : null;
+}
 
-    public void setRecentSearches (NSArray searches)
-    {
-        OS.objc_msgSend(this.id_, OS.sel_setRecentSearches_1, searches !is null ? searches.id_ : null);
-    }
+public static objc.Class cellClass() {
+    return cast(objc.Class) OS.objc_msgSend(OS.class_NSSearchField, OS.sel_cellClass);
+}
 
-    public void setRecentsAutosaveName (NSString string)
-    {
-        OS.objc_msgSend(this.id_, OS.sel_setRecentsAutosaveName_1, string !is null ? string.id_ : null);
-    }
+public static void setCellClass(objc.Class factoryId) {
+    OS.objc_msgSend(OS.class_NSSearchField, OS.sel_setCellClass_, factoryId);
+}
 
 }