HelpBrowser: path box becomes a more conventional search box
[supercollider.git] / SCClassLibrary / Common / Control / extSystemActions.sc
blob95079d610fb1fdd058eb8ca69cd3133f21d0ddd1
1 + Server {
2         onBootAdd { arg object;
3                 ServerBoot.add(object, this);
4         }
5         onBootRemove { arg object;
6                 ServerBoot.remove(object, this);
7         }
8         onQuitAdd { arg object;
9                 ServerQuit.add(object, this);
10         }
11         onQuitRemove { arg object;
12                 ServerQuit.remove(object, this);
13         }
16 + Function {
18         doOnStartUp { this.value }
19         doOnCmdPeriod { this.value }
20         doOnShutDown { this.value }
21         doOnServerBoot { arg server; this.value(server) }
22         doOnServerQuit { arg server; this.value(server) }
23         doOnServerTree { arg server; this.value(server) }
27 + Object {
28         doOnCmdPeriod { ^this.cmdPeriod } // compatibility