You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
amarok/amarok/src/amarok.profile.xml

61 lines
2.1 KiB

<?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>