summaryrefslogtreecommitdiffstats
path: root/amarok/src/amarok.profile.xml
blob: 8479499e8935bbc8d3010ffc3ef7ad47bfd69bb7 (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
<?xml version="1.0" ?>
<!DOCTYPE profile SYSTEM "profile.dtd">
<profile id="amarok" servicename="amarok">
    <name>Amarok</name>
    <author>Dirk Ziegelmeier</author>
    <instances unique="1"/>

    <!-- Volume actions -->
    <action objid="player" prototype="void volumeUp()" class="volumeup" repeat="1">
        <name>Increase volume</name>
        <comment></comment>
    </action>
    <action objid="player" prototype="void volumeDown()" class="volumedown" repeat="1">
        <name>Decrease volume</name>
        <comment></comment>
    </action>
    <action objid="player" prototype="void mute()" class="mute">
        <name>Toggle sound muting</name>
        <comment></comment>
    </action>

    <!-- Playback actions -->
    <action objid="player" prototype="void play()" class="play">
        <name>Start playing</name>
        <comment></comment>
    </action>
    <action objid="player" prototype="void stop()" class="stop">
        <name>Stop playing</name>
        <comment></comment>
    </action>
    <action objid="player" prototype="void pause()" class="pause">
        <name>Pause playing</name>
        <comment></comment>
    </action>
    <action objid="player" prototype="void next()" class="next">
        <name>Advance to next track</name>
        <comment></comment>
    </action>
    <action objid="player" prototype="void prev()" class="previous">
        <name>Go to previous track</name>
        <comment></comment>
    </action>
    <action>
    <action objid="player" prototype="void seekRelative(int)" class="seek" repeat="1" autostart="0">
    <name>Relative seek</name>
    <comment>Seek inside of tracks. Use negative numbers for rewind.</comment>
        <argument type="int">
            <range min="-100" max="100"/>
        </argument>
    </action>
    <!-- Misc actions -->
    <action objid="player" prototype="void showOSD()">
        <name>Show OSD display</name>
        <comment>Works only if OSD is enabled</comment>
    </action>
    <action objid="playlist" prototype="void togglePlaylist()">
        <name>Toggles the playlist window</name>
        <comment></comment>
    </action>
</profile>