comparison dstep/appkit/NSSplitView.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
48 NSSplitViewDividerStyleThin 48 NSSplitViewDividerStyleThin
49 } 49 }
50 50
51 class NSSplitView : NSView 51 class NSSplitView : NSView
52 { 52 {
53 mixin (ObjcWrap); 53 mixin ObjcWrap;
54
55 this (id object)
56 {
57 super(object);
58 }
54 59
55 void setVertical (bool flag) 60 void setVertical (bool flag)
56 { 61 {
57 return invokeObjcSelf!(void, "setVertical:", bool)(flag); 62 return invokeObjcSelf!(void, "setVertical:", bool)(flag);
58 } 63 }