comparison dstep/appkit/NSComboBox.d @ 25:b9de51448c6b

Added an id constructor. Changed the string mixin to a template mixin. Added support for building as a dynamic library
author Jacob Carlborg <doob@me.com>
date Tue, 06 Apr 2010 11:37:27 +0200
parents 19885b43130e
children
comparison
equal deleted inserted replaced
24:ab33fc0c3fc1 25:b9de51448c6b
57 return NSComboBoxSelectionIsChangingNotification_ = new NSString(bindings.NSComboBoxSelectionIsChangingNotification); 57 return NSComboBoxSelectionIsChangingNotification_ = new NSString(bindings.NSComboBoxSelectionIsChangingNotification);
58 } 58 }
59 59
60 class NSComboBox : NSTextField 60 class NSComboBox : NSTextField
61 { 61 {
62 mixin (ObjcWrap); 62 mixin ObjcWrap;
63
64 this (id object)
65 {
66 super(object);
67 }
63 68
64 bool hasVerticalScroller () 69 bool hasVerticalScroller ()
65 { 70 {
66 return invokeObjcSelf!(bool, "hasVerticalScroller"); 71 return invokeObjcSelf!(bool, "hasVerticalScroller");
67 } 72 }