blob: d8eb65aedd1604df55bc893aef7bf03dc1f8d506 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
<!DOCTYPE kpartgui>
<kpartgui name="juk" version="8">
<MenuBar>
<Menu name="file" noMerge="1"><text>&File</text>
<Action name="file_new"/>
<Action name="file_open"/>
<Action name="openDirectory"/>
<Separator/>
<Action name="renamePlaylist"/>
<Action name="editSearch"/>
<Action name="duplicatePlaylist"/>
<Action name="reloadPlaylist"/>
<Action name="deleteItemPlaylist"/>
<Separator/>
<Action name="file_save"/>
<Action name="file_save_as"/>
<Separator/>
<Action name="file_quit"/>
</Menu>
<Menu name="view" noMerge="1"><text>&View</text>
<Action name="showSearch"/>
<Action name="showEditor"/>
<Action name="showHistory"/>
<Action name="showUpcoming"/>
<Action name="showColumns"/>
<Action name="resizeColumnsManually"/>
<Separator/>
<Action name="viewModeMenu"/>
</Menu>
<Menu name="player"><text>&Player</text>
<Action name="actionMenu"/>
<Action name="loopPlaylist"/>
<Separator/>
<Action name="play"/>
<Action name="pause"/>
<Action name="stop"/>
<Action name="forward"/>
<Action name="back"/>
<Separator/>
<Action name="forwardAlbum"/>
</Menu>
<Menu name="playlist"><text>&Tagger</text>
<Action name="saveItem"/>
<Action name="removeItem"/>
<Action name="refresh"/>
<Separator/>
<Action name="guessTag"/>
<Action name="coverManager"/>
<Action name="renameFile"/>
</Menu>
<Menu name="settings"><text>&Settings</text>
<Action name="showSplashScreen" append="show_merge"/>
<Action name="toggleSystemTray" append="show_merge"/>
<Action name="dockOnClose" append="show_merge"/>
<Action name="togglePopups" append="show_merge"/>
<!-- <Action name="saveUpcomingTracks" append="show_merge"/> -->
<Action name="tagGuesserConfig" append="save_merge"/>
<Action name="fileRenamerConfig" append="save_merge"/>
<Action name="outputSelect" append="save_merge"/>
</Menu>
</MenuBar>
<ToolBar name="mainToolBar" hidden="true" noMerge="1"><text>Main Toolbar</text>
<Action name="file_new"/>
<Action name="file_open"/>
<Action name="file_save"/>
<Separator lineSeparator="true"/>
<Action name="edit_cut"/>
<Action name="edit_copy"/>
<Action name="edit_paste"/>
<Separator lineSeparator="true"/>
<Action name="showSearch"/>
<Action name="showEditor"/>
<Action name="showNowPlaying"/>
</ToolBar>
<ToolBar name="playToolBar" noMerge="1"><text>Play Toolbar</text>
<Action name="trackPositionAction"/>
<Action name="forward"/>
<Action name="back"/>
<Separator lineSeparator="false"/>
<Action name="stop"/>
<Action name="pause"/>
<Action name="play"/>
</ToolBar>
</kpartgui>
|