blob: b5a5fb38f59ae35000153c0982e0a9f42bdb7b7f (
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
|
<?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>
|