scide: LookupDialog - redo lookup on classes after partial lookup
[supercollider.git] / SCClassLibrary / Common / Control / extSystemActions.sc
blob0882acf6a087366d5cdb347e8681fd0ca9044b3b
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         doOnError { this.value }
22         doOnServerBoot { arg server; this.value(server) }
23         doOnServerQuit { arg server; this.value(server) }
24         doOnServerTree { arg server; this.value(server) }
28 + Object {
29         doOnCmdPeriod { ^this.cmdPeriod } // compatibility