diff options
Diffstat (limited to 'kdelirc/profiles')
-rw-r--r-- | kdelirc/profiles/CMakeLists.txt | 16 | ||||
-rw-r--r-- | kdelirc/profiles/Makefile.am | 5 | ||||
-rw-r--r-- | kdelirc/profiles/konqueror.profile.xml | 17 | ||||
-rw-r--r-- | kdelirc/profiles/noatun.profile.xml | 75 | ||||
-rw-r--r-- | kdelirc/profiles/profile.dtd | 28 | ||||
-rw-r--r-- | kdelirc/profiles/tdelauncher.profile.xml | 18 |
6 files changed, 0 insertions, 159 deletions
diff --git a/kdelirc/profiles/CMakeLists.txt b/kdelirc/profiles/CMakeLists.txt deleted file mode 100644 index 7fedebd..0000000 --- a/kdelirc/profiles/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -################################################# -# -# (C) 2012 Golubev Alexander -# fatzer2 (AT) gmail.com -# -# Improvements and feedback are welcome -# -# This file is released under GPL >= 2 -# -################################################# - -install( FILES profile.dtd noatun.profile.xml - tdelauncher.profile.xml konqueror.profile.xml - DESTINATION ${DATA_INSTALL_DIR}/profiles -) - diff --git a/kdelirc/profiles/Makefile.am b/kdelirc/profiles/Makefile.am deleted file mode 100644 index 9561d73..0000000 --- a/kdelirc/profiles/Makefile.am +++ /dev/null @@ -1,5 +0,0 @@ -profiledata_DATA = profile.dtd noatun.profile.xml tdelauncher.profile.xml konqueror.profile.xml -profiledatadir = $(kde_datadir)/profiles - -EXTRA_DIST = $(profiledata_DATA) - diff --git a/kdelirc/profiles/konqueror.profile.xml b/kdelirc/profiles/konqueror.profile.xml deleted file mode 100644 index 0fdfdba..0000000 --- a/kdelirc/profiles/konqueror.profile.xml +++ /dev/null @@ -1,17 +0,0 @@ -<?xml version="1.0"?> -<!DOCTYPE profile SYSTEM "profile.dtd"> - -<profile id="konqueror" servicename="konqueror"> - <name>Konqueror</name> - <author>Gav Wood</author> - <instances uniqueapp="0" ifmulti="sendtotop"/> - <action objid="KonquerorIface" prototype="void createNewWindow(QString)" repeat="0" autostart="0"> - <name>Create New Window</name> - <comment>Creates a new window and loads an arbitrary URL.</comment> - <argument type=TQSTRING_OBJECT_NAME_STRING><comment>The URL to load in the window initially.</comment></argument> - </action> - <action objid="MainApplication-Interface" prototype="void quit()" repeat="0" autostart="0"> - <name>Quit</name> - <comment>Closes the Konqueror window.</comment> - </action> -</profile> diff --git a/kdelirc/profiles/noatun.profile.xml b/kdelirc/profiles/noatun.profile.xml deleted file mode 100644 index a9b204b..0000000 --- a/kdelirc/profiles/noatun.profile.xml +++ /dev/null @@ -1,75 +0,0 @@ -<?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> diff --git a/kdelirc/profiles/profile.dtd b/kdelirc/profiles/profile.dtd deleted file mode 100644 index 070fd14..0000000 --- a/kdelirc/profiles/profile.dtd +++ /dev/null @@ -1,28 +0,0 @@ -<!DOCTYPE profile [ - -<!ELEMENT profile (action+, name, author)> -<!ELEMENT name (#PCDATA)> -<!ELEMENT author (#PCDATA)> -<!ELEMENT action (name, comment, argument*)> -<!ELEMENT argument (comment, range?, default?)> -<!ELEMENT comment (#PCDATA)> -<!ELEMENT type (#PCDATA)> -<!ELEMENT instances> -<!ELEMENT default (#PCDATA)> - -<!ATTLIST profile id CDATA #REQUIRED> -<!ATTLIST profile servicename CDATA #REQUIRED> -<!ATTLIST action objid CDATA #REQUIRED> -<!ATTLIST action prototype CDATA #REQUIRED> -<!ATTLIST argument type (int|QString|QCString|QStringList|bool|double) #REQUIRED> -<!ATTLIST range min CDATA #REQUIRED> -<!ATTLIST range max CDATA #REQUIRED> -<!ATTLIST action class (captions|teletext|fullscreen|scan|finetuneup|finetunedown|recall|enter|number|play|stop|pause|record|previous|next|rewind|forward|eject|mute|volumedown|volumeup|channeldown|channelup|red|yellow|green|blue|on|off) #IMPLIED> -<!ATTLIST action multiplier CDATA "1" #IMPLIED> -<!ATTLIST action repeat (0|1) "0"> -<!ATTLIST instances uniqueapp (0|1) "1" #REQUIRED> -<!ATTLIST instances ifmulti (sendtotop|sendtobottom|sendtoall|dontsend) "dontsend"> - -]> - - diff --git a/kdelirc/profiles/tdelauncher.profile.xml b/kdelirc/profiles/tdelauncher.profile.xml deleted file mode 100644 index 57eca31..0000000 --- a/kdelirc/profiles/tdelauncher.profile.xml +++ /dev/null @@ -1,18 +0,0 @@ -<?xml version="1.0" ?> -<!DOCTYPE profile SYSTEM "profile.dtd"> -<profile id="tdelauncher"> - <name>TDE Program Launcher</name> - <author>Gav Wood</author> - <action objid="default" prototype="void tdeinit_exec(QString, QStringList)" repeat="0" autostart="0"> - <name>Execute</name> - <comment>Runs a program or script</comment> - <argument type=TQSTRING_OBJECT_NAME_STRING><comment>The executable name and path of the program or script to run</comment></argument> - <argument type=TQSTRINGLIST_OBJECT_NAME_STRING><comment>Parameters for the program or script</comment></argument> - </action> - <action objid="default" prototype="void tdeinit_exec_wait(QString, QStringList)" repeat="0" autostart="0"> - <name>Execute and Wait</name> - <comment>Runs a program or script and waits for it to finish</comment> - <argument type=TQSTRING_OBJECT_NAME_STRING><comment>The executable name and path of the program or script to run</comment></argument> - <argument type=TQSTRINGLIST_OBJECT_NAME_STRING><comment>Parameters for the program or script</comment></argument> - </action> -</profile> |