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 | ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2 (patch) | |
tree | d3bb9f5d25a2dc09ca81adecf39621d871534297 /kbruch/src/kbruch.kcfg | |
download | tdeedu-ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2.tar.gz tdeedu-ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2.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/kdeedu@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kbruch/src/kbruch.kcfg')
-rw-r--r-- | kbruch/src/kbruch.kcfg | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/kbruch/src/kbruch.kcfg b/kbruch/src/kbruch.kcfg new file mode 100644 index 00000000..98103a2a --- /dev/null +++ b/kbruch/src/kbruch.kcfg @@ -0,0 +1,79 @@ +<?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" > +<kcfgfile name="kbruchrc"/> + + <group name="General"> + <entry type="Int" key="activeExercise"> + <label>Active exercise.</label> + <whatsthis>Saves the active exercise's type.</whatsthis> + <default>0</default> + </entry> + </group> + + <group name="Task"> + <entry type="Bool" key="addsub"> + <label>Enable Addition/Subtraction</label> + <whatsthis>Enable Addition/Subtraction for task generation.</whatsthis> + <default>true</default> + </entry> + <entry type="Bool" key="muldiv"> + <label>Enable Multiplication/Division</label> + <whatsthis>Enable Multiplication/Division for task generation.</whatsthis> + <default>false</default> + </entry> + <entry type="UInt" key="number_ratios"> + <label>Number of fractions</label> + <whatsthis>Set the number of fractions for task generation.</whatsthis> + <default>2</default> + </entry> + <entry type="UInt" key="max_main_denominator"> + <label>Max. main denominator</label> + <whatsthis>Set the maximum value of the main denominator.</whatsthis> + <default>10</default> + </entry> + </group> + + <group name="Statistics"> + <entry type="Int" key="correct"> + <label>Number of correctly solved tasks</label> + <whatsthis>Number of correctly solved tasks</whatsthis> + <default>0</default> + </entry> + <entry type="Int" key="count"> + <label>Number of solved tasks</label> + <whatsthis>Total number of solved tasks</whatsthis> + <default>0</default> + </entry> + </group> + + <group name="TaskViewer"> + <entry name="numberColor" type="Color"> + <label>Color of the numbers in the task view</label> + <whatsthis>Color of the numbers in the task view</whatsthis> + <default code="true">Qt::darkGreen</default> + </entry> + <entry name="operationColor" type="Color"> + <label>Color of the operation signs in the task view</label> + <whatsthis>Color of the operation signs in the task view</whatsthis> + <default code="true">Qt::blue</default> + </entry> + <entry name="fractionBarColor" type="Color"> + <label>Color of the fraction bars in the task view</label> + <whatsthis>Color of the fraction bars in the task view</whatsthis> + <default code="true">Qt::red</default> + </entry> + <entry type="Font" key="taskFont"> + <label>Font used for the task view</label> + <whatsthis>Font used for the task view</whatsthis> + <default code="true">KGlobalSettings::generalFont()</default> + </entry> + <entry type="Bool" key="showSpecialRatioNotation"> + <label>Enable showing the result also as a mixed number</label> + <whatsthis>Enables/disables showing the result also in the special mixed-number notation.</whatsthis> + <default>true</default> + </entry> + </group> +</kcfg> |