blob: a9b204be0841ada9147906fa636826b6f712028a (
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
|
<?xml version="1.0" ?>
<!DOCTYPE profile SYSTEM "profile.dtd">
<profile id="noatun" servicename="noatun">
<name>Noatun</name>
<author>Gav Wood</author>
<action objid="Noatun" prototype="void playpause()" class="pause">
<name>Play/Pause</name>
<comment>Toggles the current track between playing and pausing.</comment>
</action>
<action objid="Noatun" prototype="void stop()" class="stop">
<name>Stop</name>
<comment>Stops current playback, if any.</comment>
</action>
<action objid="Noatun" prototype="void clear()" class="eject">
<name>Clear Playlist</name>
<comment>Clears the playlist of all items.</comment>
</action>
<action objid="Noatun" prototype="void back()" class="previous">
<name>Back</name>
<comment>Skips to the start of the last track.</comment>
</action>
<action objid="Noatun" prototype="void forward()" class="next">
<name>Forward</name>
<comment>Skips to the start of the next track.</comment>
</action>
<action objid="Noatun" prototype="void loop()">
<name>Playback Mode</name>
<comment>Cycles through the playback modes of Noatun.</comment>
</action>
<action objid="Noatun" prototype="void play()" class="play">
<name>Play</name>
<comment>Starts playback.</comment>
</action>
<action objid="Noatun" prototype="void removeCurrent()">
<name>Remove Current</name>
<comment>Removes only the current track from the play list.</comment>
</action>
<action objid="Noatun" prototype="void toggleMute()" class="mute">
<name>Mute</name>
<comment>Toggle sound muting</comment>
</action>
<action objid="Noatun" prototype="void volumeUp()" class="volumeup" repeat="1">
<name>Volume Up</name>
<comment>Increase volume</comment>
</action>
<action objid="Noatun" prototype="void volumeDown()" class="volumedown" repeat="1">
<name>Volume Down</name>
<comment>Decrease volume</comment>
</action>
<action objid="Noatun" prototype="void setVolume(int volume)">
<name>Set Volume</name>
<comment>Sets the volume to a configurable amount.</comment>
<argument type="int">
<comment>The required percentage of the volume.</comment>
<range min="0" max="100"/>
</argument>
</action>
<action objid="Noatun" prototype="void toggleListView()">
<name>Toggle Playlist View</name>
<comment>Toggles the visiblility of the playlist window.</comment>
</action>
<action objid="Noatun" prototype="void skipto(int)">
<name>Skip To</name>
<comment>Skips to a configurable point in the current track.</comment>
<argument type="int">
<comment>The percentage of the track to move through.</comment>
<range min="0" max="100"/>
</argument>
</action>
<action objid="MainApplication-Interface" prototype="void quit()" class="off">
<name>Quit</name>
<comment>Exit Noatun</comment>
</action>
</profile>
|