1<?xml version="1.0" encoding="UTF-8"?> 2<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0 5 http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" > 6 <include>kfontrequester.h</include> 7 <kcfgfile name="kitenrc"/> 8 <group name="dict_config_types"> 9 <entry key="dictionary_list" name="dictionary_list" type="StringList"> 10 <label>List of dictionary Types, used internally, do not touch</label> 11 <?If you are adding a dictionary type, add it to the list and add your 12 Section below... at the moment you are required to have 13 <dictname>__useGlobal and <dictname>__NAMES list if you list it in this 14 set... the program will crash otherwise. 15 You must also provide the __displayFields information, although you 16 can provide this even if you do not allow the user to enter other 17 dictionaries. If you use a custom kcfg dialog instead of the standard 18 one, be sure to provide the variables that you need. 19 ?> 20 <default>edict,kanjidic</default> 21 </entry> 22 </group> 23 <group name="dicts_edict"> 24 <entry key="__NAMES" name="edict__NAMES" type="StringList"> 25 <label>Edict dictionary files</label> 26 </entry> 27 <entry key="__useGlobal" name="edict__useGlobal" type="Bool"> 28 <label>Use preinstalled edict</label> 29 <default>true</default> 30 </entry> 31 <entry key="__displayFields" name="edict__displayFields" type="StringList"> 32 <label>Set of fields to display for this dictionary type</label> 33 <default>Word/Kanji,Reading,Meaning</default> 34 </entry> 35 </group> 36 37 <group name="dicts_kanjidic"> 38 <entry key="__NAMES" name="kanjidic__NAMES" type="StringList"> 39 <label>Kanjidic dictionary files</label> 40 </entry> 41 <entry key="__useGlobal" name="kanjidic__useGlobal" type="Bool"> 42 <label>Use preinstalled kanjidic</label> 43 <default>true</default> 44 </entry> 45 <entry key="__displayFields" name="kanjidic__displayFields" type="StringList"> 46 <label>Set of fields to display for this dictionary type</label> 47 <default>Word/Kanji,Reading,Meaning</default> 48 </entry> 49 </group> 50 51 <group name="Searching Options"> 52 <entry key="initialSearch" type="Bool"> 53 <label>Do we search for "jiten" on startup</label> 54 <default>true</default> 55 </entry> 56 <entry key="caseSensitive" type="Bool"> 57 <label>Case sensitive searches</label> 58 <default>false</default> 59 </entry> 60 </group> 61 <group name="Sorting"> 62 <entry key="dictionary_enable" type="String"> 63 <label>Enable Sorting By Dictionary</label> 64 <default>true></default> 65 </entry> 66 <entry key="dictionary_sortlist" type="StringList"> 67 <label>What order do we sort the dictionaries in?</label> 68 <default>kanjidic,edict</default> 69 </entry> 70 <entry key="field_sortlist" type="StringList"> 71 <label>What order do we sort the fields in?</label> 72 <default>common</default> 73 </entry> 74 </group> 75 <group name="Font"> 76 <entry key="font" type="Font"></entry> 77 <entry key="textSameSize" type="Bool"> 78 <default>false</default> 79 </entry> 80 <entry key="textKanjiBig" type="Bool"> 81 <default>false</default> 82 </entry> 83 <entry key="textMainWordBig" type="Bool"> 84 <default>true</default> 85 </entry> 86 </group> 87 <group name="Learn"> 88 </group> 89 <group name="app"> 90 <entry key="filter_rare" type="Int"> 91 <label>0=No filter, 1=Limit search results to "common" entries only, 2=Separate common and uncommon entries</label> 92 <default>0</default> 93 </entry> 94 <entry key="search_precision" type="Int"> 95 <label>The user's last type of search, 0=Exact, 1=Match Start, 2=Match End, 3=Match Anywhere</label> 96 <default>3</default> 97 </entry> 98 <entry key="search_limit_to_wordtype" type="Int"> 99 <label>The user's last type of search, 0=Any, 1=Verb, 2=Noun, 3=Adjective, 4=Adverb, 5=Prefix, 6=Suffix, 7=Expression</label> 100 <default>0</default> 101 </entry> 102 <entry key="autosearch" type="Bool"> 103 <label>Automatically search for clipboard entries?</label> 104 <default>false</default> 105 </entry> 106 </group> 107</kcfg> 108