diff dwt/internal/cocoa/NSBrowserCell.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/NSBrowserCell.d	Tue Oct 21 15:20:04 2008 +0200
+++ b/dwt/internal/cocoa/NSBrowserCell.d	Mon Dec 01 17:07:00 2008 +0100
@@ -1,104 +1,47 @@
-/*******************************************************************************
- * 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.NSBrowserCell;
 
+import cocoa = dwt.internal.cocoa.id;
 import dwt.internal.cocoa.NSCell;
 import dwt.internal.cocoa.NSColor;
-import dwt.internal.cocoa.NSImage;
 import dwt.internal.cocoa.NSView;
 import dwt.internal.cocoa.OS;
 import objc = dwt.internal.objc.runtime;
 
-public class NSBrowserCell : NSCell
-{
-    public this ()
-    {
-        super();
-    }
-
-    public this (objc.id id)
-    {
-        super(id);
-    }
-
-    public NSImage alternateImage ()
-    {
-        objc.id result = OS.objc_msgSend(this.id_, OS.sel_alternateImage);
-        return result !is null ? new NSImage(result) : null;
-    }
+public class NSBrowserCell : NSCell {
+    
+public this () {
+    super();
+}
 
-    public static NSImage branchImage ()
-    {
-        objc.id result = OS.objc_msgSend(OS.class_NSBrowserCell, OS.sel_branchImage);
-        return result !is null ? new NSImage(result) : null;
-    }
+public this (objc.id id) {
+    super(id);
+}
 
-    public NSColor highlightColorInView (NSView controlView)
-    {
-        objc.id result = OS.objc_msgSend(this.id_, OS.sel_highlightColorInView_1, controlView !is null ? controlView.id_ : null);
-        return result !is null ? new NSColor(result) : null;
-    }
-
-    public static NSImage highlightedBranchImage ()
-    {
-        objc.id result = OS.objc_msgSend(OS.class_NSBrowserCell, OS.sel_highlightedBranchImage);
-        return result !is null ? new NSImage(result) : null;
-    }
+public this (cocoa.id id) {
+    super(id);
 
-    public NSImage image ()
-    {
-        objc.id result = OS.objc_msgSend(this.id_, OS.sel_image);
-        return result !is null ? new NSImage(result) : null;
-    }
-
-    public bool isLeaf ()
-    {
-        return OS.objc_msgSend(this.id_, OS.sel_isLeaf) !is null;
-    }
-
-    public bool isLoaded ()
-    {
-        return OS.objc_msgSend(this.id_, OS.sel_isLoaded) !is null;
-    }
-
-    public void reset ()
-    {
-        OS.objc_msgSend(this.id_, OS.sel_reset);
-    }
+}
 
-    public void set ()
-    {
-        OS.objc_msgSend(this.id_, OS.sel_set);
-    }
-
-    public void setAlternateImage (NSImage newAltImage)
-    {
-        OS.objc_msgSend(this.id_, OS.sel_setAlternateImage_1, newAltImage !is null ? newAltImage.id_ : null);
-    }
+public NSColor highlightColorInView (NSView controlView) {
+    objc.id result = OS.objc_msgSend(this.id, OS.sel_highlightColorInView_, controlView !is null ? controlView.id : null);
+    return result !is null ? new NSColor(result) : null;
+}
 
-    public void setImage (NSImage image)
-    {
-        OS.objc_msgSend(this.id_, OS.sel_setImage_1, image !is null ? image.id_ : null);
-    }
+public void setLeaf (bool flag) {
+    OS.objc_msgSend(this.id, OS.sel_setLeaf_, flag);
+}
 
-    public void setLeaf (bool flag)
-    {
-        OS.objc_msgSend(this.id_, OS.sel_setLeaf_1, flag);
-    }
-
-    public void setLoaded (bool flag)
-    {
-        OS.objc_msgSend(this.id_, OS.sel_setLoaded_1, flag);
-    }
 }