diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 84da08d7b7fcda12c85caeb5a10b4903770a6f69 (patch) | |
tree | 2a6aea76f2dfffb4cc04bb907c4725af94f70e72 /kicker-applets/kbinaryclock/kbinaryclock.kcfg | |
download | tdeaddons-84da08d7b7fcda12c85caeb5a10b4903770a6f69.tar.gz tdeaddons-84da08d7b7fcda12c85caeb5a10b4903770a6f69.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kicker-applets/kbinaryclock/kbinaryclock.kcfg')
-rw-r--r-- | kicker-applets/kbinaryclock/kbinaryclock.kcfg | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/kicker-applets/kbinaryclock/kbinaryclock.kcfg b/kicker-applets/kbinaryclock/kbinaryclock.kcfg new file mode 100644 index 0000000..b5a5fb3 --- /dev/null +++ b/kicker-applets/kbinaryclock/kbinaryclock.kcfg @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="UTF-8"?> +<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0 + http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" > + <include>kapplication.h</include> + <kcfgfile arg="true"/> + <group name="General"> + <entry name="Shape" type="Enum"> + <label>Shape of the LEDs</label> + <choices> + <choice name="Rectangular"/> + <choice name="Circular"/> + </choices> + <default>Circular</default> + </entry> + <entry name="Look" type="Enum"> + <label>Look</label> + <choices> + <choice name="Flat"/> + <choice name="Raised"/> + <choice name="Sunken"/> + </choices> + <default>Raised</default> + </entry> + <entry name="Color" type="Color"> + <label>Color of the LEDs</label> + <default>55,49,238</default> + </entry> + <entry name="DarkFactor" type="Int"> + <label>Darkness of disabled LEDs</label> + <default>300</default> + <min>0</min> + <max>1000</max> + </entry> + <entry name="Background" type="Color"> + <label>Background color</label> + <default code="true">KApplication::palette().active().background()</default> + </entry> + <entry name="Show_Seconds" type="Bool"> + <label>Whether to show seconds</label> + <default>true</default> + </entry> + <entry name="Hide_Off_Leds" type="Bool"> + <label>Whether to show LEDs that are off</label> + <default>false</default> + </entry> + </group> +</kcfg> |