blob: ef1e433def2cafc3eb02636d5c76ac98f27a3658 (
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
|
<?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>kstandarddirs.h</include>
<kcfgfile name="keditrc"/>
<group name="Text Font">
<entry name="Font" type="Font" key="KEditFont">
<label>Font</label>
<default code="true">TDEGlobalSettings::fixedFont()</default>
</entry>
</group>
<group name="General Options">
<entry name="CustomColor" type="Bool">
<label>Use custom colors.</label>
<default>false</default>
</entry>
<entry name="TextColor" type="Color" key="ForeColor">
<label>Text color</label>
<default code="true">TDEGlobalSettings::textColor()</default>
</entry>
<entry name="BackgroundColor" type="Color" key="BackColor">
<label>Background color</label>
<default code="true">TDEGlobalSettings::baseColor()</default>
</entry>
<entry name="WrapMode" type="Enum">
<label>Wrapping mode</label>
<choices>
<choice name="NoWrap"/>
<choice name="SoftWrap"/>
<choice name="FixedColumnWrap"/>
</choices>
<default>SoftWrap</default>
</entry>
<entry name="WrapColumn" type="Int">
<label>Wrap at column</label>
<default>79</default>
</entry>
<entry name="BackupCopies" type="Bool">
<label>Make backup when saving a file</label>
<default>true</default>
</entry>
</group>
</kcfg>
|