diff dwt/internal/cocoa/NSTableColumn.d @ 1:8b48be5454ce

The internal cocoa classes compile now
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Tue, 19 Aug 2008 17:35:17 +0200
parents 380af2bdd8e5
children f565d3a95c0a
line wrap: on
line diff
--- a/dwt/internal/cocoa/NSTableColumn.d	Sat Aug 09 17:00:02 2008 +0200
+++ b/dwt/internal/cocoa/NSTableColumn.d	Tue Aug 19 17:35:17 2008 +0200
@@ -13,6 +13,7 @@
  *******************************************************************************/
 module dwt.internal.cocoa.NSTableColumn;
 
+import dwt.internal.cocoa.CGFloat;
 import dwt.internal.cocoa.id;
 import dwt.internal.cocoa.NSCell;
 import dwt.internal.cocoa.NSInteger;
@@ -39,155 +40,155 @@
 
     public id dataCell ()
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_dataCell);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_dataCell);
         return result !is null ? new id(result) : null;
     }
 
     public id dataCellForRow (NSInteger row)
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_dataCellForRow_1, row);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_dataCellForRow_1, row);
         return result !is null ? new id(result) : null;
     }
 
     public NSTableHeaderCell headerCell ()
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_headerCell);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_headerCell);
         return result !is null ? new NSTableHeaderCell(result) : null;
     }
 
     public NSString headerToolTip ()
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_headerToolTip);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_headerToolTip);
         return result !is null ? new NSString(result) : null;
     }
 
     public id identifier ()
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_identifier);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_identifier);
         return result !is null ? new id(result) : null;
     }
 
     public NSTableColumn initWithIdentifier (id identifier)
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_initWithIdentifier_1, identifier !is null ? identifier.id : null);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_initWithIdentifier_1, identifier !is null ? identifier.id_ : null);
         return result !is null ? this : null;
     }
 
     public bool isEditable ()
     {
-        return OS.objc_msgSend(this.id, OS.sel_isEditable) !is null;
+        return OS.objc_msgSend(this.id_, OS.sel_isEditable) !is null;
     }
 
     public bool isHidden ()
     {
-        return OS.objc_msgSend(this.id, OS.sel_isHidden) !is null;
+        return OS.objc_msgSend(this.id_, OS.sel_isHidden) !is null;
     }
 
     public bool isResizable ()
     {
-        return OS.objc_msgSend(this.id, OS.sel_isResizable) !is null;
+        return OS.objc_msgSend(this.id_, OS.sel_isResizable) !is null;
     }
 
     public CGFloat maxWidth ()
     {
-        return cast(CGFloat) OS.objc_msgSend_fpret(this.id, OS.sel_maxWidth);
+        return cast(CGFloat) OS.objc_msgSend_fpret(this.id_, OS.sel_maxWidth);
     }
 
     public CGFloat minWidth ()
     {
-        return cast(CGFloat) OS.objc_msgSend_fpret(this.id, OS.sel_minWidth);
+        return cast(CGFloat) OS.objc_msgSend_fpret(this.id_, OS.sel_minWidth);
     }
 
     public NSUInteger resizingMask ()
     {
-        return cast(NSUInteger) OS.objc_msgSend(this.id, OS.sel_resizingMask);
+        return cast(NSUInteger) OS.objc_msgSend(this.id_, OS.sel_resizingMask);
     }
 
     public void setDataCell (NSCell cell)
     {
-        OS.objc_msgSend(this.id, OS.sel_setDataCell_1, cell !is null ? cell.id : null);
+        OS.objc_msgSend(this.id_, OS.sel_setDataCell_1, cell !is null ? cell.id_ : null);
     }
 
     public void setEditable (bool flag)
     {
-        OS.objc_msgSend(this.id, OS.sel_setEditable_1, flag);
+        OS.objc_msgSend(this.id_, OS.sel_setEditable_1, flag);
     }
 
     public void setHeaderCell (NSCell cell)
     {
-        OS.objc_msgSend(this.id, OS.sel_setHeaderCell_1, cell !is null ? cell.id : null);
+        OS.objc_msgSend(this.id_, OS.sel_setHeaderCell_1, cell !is null ? cell.id_ : null);
     }
 
     public void setHeaderToolTip (NSString string)
     {
-        OS.objc_msgSend(this.id, OS.sel_setHeaderToolTip_1, string !is null ? string.id : null);
+        OS.objc_msgSend(this.id_, OS.sel_setHeaderToolTip_1, string !is null ? string.id_ : null);
     }
 
     public void setHidden (bool hidden)
     {
-        OS.objc_msgSend(this.id, OS.sel_setHidden_1, hidden);
+        OS.objc_msgSend(this.id_, OS.sel_setHidden_1, hidden);
     }
 
     public void setIdentifier (id identifier)
     {
-        OS.objc_msgSend(this.id, OS.sel_setIdentifier_1, identifier !is null ? identifier.id : null);
+        OS.objc_msgSend(this.id_, OS.sel_setIdentifier_1, identifier !is null ? identifier.id_ : null);
     }
 
     public void setMaxWidth (CGFloat maxWidth)
     {
-        OS.objc_msgSend(this.id, OS.sel_setMaxWidth_1, maxWidth);
+        OS.objc_msgSend(this.id_, OS.sel_setMaxWidth_1, maxWidth);
     }
 
     public void setMinWidth (CGFloat minWidth)
     {
-        OS.objc_msgSend(this.id, OS.sel_setMinWidth_1, minWidth);
+        OS.objc_msgSend(this.id_, OS.sel_setMinWidth_1, minWidth);
     }
 
     public void setResizable (bool flag)
     {
-        OS.objc_msgSend(this.id, OS.sel_setResizable_1, flag);
+        OS.objc_msgSend(this.id_, OS.sel_setResizable_1, flag);
     }
 
     public void setResizingMask (NSUInteger resizingMask)
     {
-        OS.objc_msgSend(this.id, OS.sel_setResizingMask_1, resizingMask);
+        OS.objc_msgSend(this.id_, OS.sel_setResizingMask_1, resizingMask);
     }
 
     public void setSortDescriptorPrototype (NSSortDescriptor sortDescriptor)
     {
-        OS.objc_msgSend(this.id, OS.sel_setSortDescriptorPrototype_1, sortDescriptor !is null ? sortDescriptor.id : null);
+        OS.objc_msgSend(this.id_, OS.sel_setSortDescriptorPrototype_1, sortDescriptor !is null ? sortDescriptor.id_ : null);
     }
 
     public void setTableView (NSTableView tableView)
     {
-        OS.objc_msgSend(this.id, OS.sel_setTableView_1, tableView !is null ? tableView.id : null);
+        OS.objc_msgSend(this.id_, OS.sel_setTableView_1, tableView !is null ? tableView.id_ : null);
     }
 
     public void setWidth (CGFloat width)
     {
-        OS.objc_msgSend(this.id, OS.sel_setWidth_1, width);
+        OS.objc_msgSend(this.id_, OS.sel_setWidth_1, width);
     }
 
     public void sizeToFit ()
     {
-        OS.objc_msgSend(this.id, OS.sel_sizeToFit);
+        OS.objc_msgSend(this.id_, OS.sel_sizeToFit);
     }
 
     public NSSortDescriptor sortDescriptorPrototype ()
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_sortDescriptorPrototype);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_sortDescriptorPrototype);
         return result !is null ? new NSSortDescriptor(result) : null;
     }
 
     public NSTableView tableView ()
     {
-        objc.id result = OS.objc_msgSend(this.id, OS.sel_tableView);
+        objc.id result = OS.objc_msgSend(this.id_, OS.sel_tableView);
         return result !is null ? new NSTableView(result) : null;
     }
 
     public CGFloat width ()
     {
-        return cast(CGFloat) OS.objc_msgSend_fpret(this.id, OS.sel_width);
+        return cast(CGFloat) OS.objc_msgSend_fpret(this.id_, OS.sel_width);
     }
 
 }