4 gui { arg parent,bounds ... args;
5 ^this.guiClass.new(this).performList(\gui,[parent,bounds] ++ args);
7 guiClass { ^ObjectGui }
11 // just a label with the name
13 guiClass { ^StringGui }
16 guiClass { ^StringGui }
19 guiClass { ^StringGui }
22 guiClass { ^StringGui }
28 guiClass { ^StringGui }
30 // create a window/FlowView if you don't supply a parent to: thing.gui
31 asPageLayout { arg name,bounds;
32 ^PageLayout(name.asString,bounds ).front
34 asFlowView { arg bounds;