clean up indentation and spacing
[supercollider.git] / SCClassLibrary / Common / GUI / guicrucial / gui.sc
blob8338b79c49e966a5d3da86a5231a5905cdd998b3
2 + Object {
4         gui { arg parent,bounds ... args;
5                 ^this.guiClass.new(this).performList(\gui,[parent,bounds] ++ args);
6         }
7         guiClass { ^ObjectGui }
11 // just a label with the name
12 + String {
13         guiClass { ^StringGui }
15 + Symbol {
16         guiClass { ^StringGui }
18 + SimpleNumber {
19         guiClass { ^StringGui }
21 + Boolean {
22         guiClass { ^StringGui }
26 + Nil {
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
33         }
34         asFlowView { arg bounds;
35                 ^FlowView(nil,bounds)
36         }