1{
2    "## Comment" = "Do NOT change this file, Gorm maintains it";
3    AppController = {
4	Actions = (
5	    "play:",
6	    "stop:",
7	    "prev:",
8	    "next:",
9	    "shuffle:",
10	    "repeat:",
11	    "percentChanged:",
12	    "volumeChanged:",
13	    "showPrefPanel:",
14	    "managePlaylists:",
15	    "connect:",
16	    "browseCollection:",
17	    "serverStatistics:",
18	    "showPlaylist:",
19	    "updateCollection:",
20	    "showCrossfade:",
21	    "showLyricsInspector:",
22	    "showSongInspector:",
23	    "showPlaylistInspector:",
24	    "browseCollectionByDirectory:"
25	);
26	Outlets = (
27	    playButton,
28	    stopButton,
29	    prevButton,
30	    nextButton,
31	    shuffleButton,
32	    repeatButton,
33	    playView,
34	    percentSlider,
35	    volumeSlider,
36	    playerButton,
37	    window,
38	    statisticsItem,
39	    browseItem,
40	    updateItem,
41	    showItem,
42	    manageItem
43	);
44	Super = NSObject;
45    };
46    FirstResponder = {
47	Actions = (
48	    "browseCollectionByDirectory:",
49	    "setText:",
50	    "showLyricsInspector:",
51	    "showPlaylistInspector:",
52	    "showSongInspector:"
53	);
54	Super = NSObject;
55    };
56    PlayView = {
57	Actions = (
58	    "setText:"
59	);
60	Outlets = (
61	);
62	Super = NSView;
63    };
64}