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 | c90c389a8a8d9d8661e9772ec4144c5cf2039f23 (patch) | |
tree | 6d8391395bce9eaea4ad78958617edb20c6a7573 /kreversi/kreversi.kcfg | |
download | tdegames-c90c389a8a8d9d8661e9772ec4144c5cf2039f23.tar.gz tdegames-c90c389a8a8d9d8661e9772ec4144c5cf2039f23.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/kdegames@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kreversi/kreversi.kcfg')
-rw-r--r-- | kreversi/kreversi.kcfg | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/kreversi/kreversi.kcfg b/kreversi/kreversi.kcfg new file mode 100644 index 00000000..c1dc6e52 --- /dev/null +++ b/kreversi/kreversi.kcfg @@ -0,0 +1,66 @@ +<?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> + <include>kglobal.h</include> + <kcfgfile name="kreversirc"/> + <group name="Game"> + <entry name="Grayscale" type="Bool"> + <label>Whether to use a grayscale board instead of colored.</label> + <default>false</default> + </entry> + <entry name="HumanColor" type="Int"> + <label>The human color.</label> + <default>1</default> + </entry> + <entry name="ComputerColor" type="Int"> + <label>The computer color.</label> + <default>0</default> + </entry> + <entry name="Animation" type="Bool"> + <label>Whether to use animations.</label> + <default>true</default> + </entry> + <entry name="AnimationSpeed" type="Int"> + <label>The speed of the animations.</label> + <default>4</default> + <min>1</min> + <max>10</max> + </entry> + <entry name="Zoom" type="Int"> + <label>The zoom factor of the board.</label> + <default>100</default> + <min>10</min> + <max>300</max> + </entry> + <entry name="CompetitiveGameChoice" type="Bool"> + <label>Whether to play competitively in contrast to casually.</label> + <default>true</default> + </entry> + <entry name="skill" type="Int"> + <label>The strength of the computer player.</label> + <default>1</default> + <min>1</min> + <max>7</max> + </entry> + <entry name="BackgroundImageChoice" type="Bool"> + <label>Whether to use a background image.</label> + <default>true</default> + </entry> + <entry name="BackgroundColor" type="Color"> + <label>The background color to use.</label> + <default>#ffffff</default> + </entry> + <entry name="BackgroundImage" type="Path"> + <label>Image to use as background.</label> + <code>#define PICDATA(x) KGlobal::dirs()->findResource("appdata", QString("pics/")+ x)</code> + <default code="true">PICDATA("background/Light_Wood.png")</default> + </entry> + <entry name="MenubarVisible" type="Bool" key="menubar visible"> + <label>Whether the menubar is visible.</label> + <default>true</default> + </entry> + </group> +</kcfg> |