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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
|
/***************************************************************************
Vocabulary Document for KDE Edu
-----------------------------------------------------------------------
copyright : (C) 1999-2001 Ewald Arnold <kvoctrain@ewald-arnold.de>
(C) 2005, 2007 Peter Hedlund <peter.hedlund@kdemail.net>
(C) 2007 Frederik Gladhorn <frederik.gladhorn@kdemail.net>
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef KVTMLDEFS_H
#define KVTMLDEFS_H
/** XML tags and attribute names */
static const QLatin1String KV_DOCTYPE( "kvtml" ); // doctype
#define KV_TITLE "title" // doc title
#define KV_AUTHOR "author" // doc author
#define KV_LICENSE "license" // doc license
#define KV_DOC_REM "remark" // doc remark
#define KV_LINES "lines" // entries
#define KV_GENERATOR "generator" // who generated the doc
#define KV_COLS "cols" // columns
#define KV_ENCODING "encoding" // document encoding (obsolete!)
#define KV_EXPR "e" // entry for one expression
static const QLatin1String KV_ORG( "o" ); // original expression in specified language
static const QLatin1String KV_TRANS( "t" ); // translated expression in specified language
#define KV_LANG "l" // language: en, de, it, fr ...
#define KV_QUERY "q" // query: org or translation
#define KV_O "o" // org
#define KV_T "t" // translation
#define KV_GRADE "g" // grade of knowledge: 0=well known, x=not known for x times
#define KV_LESS_MEMBER "m" // member of lesson 1 .. x
#define KV_COUNT "c" // number of times queried
#define KV_SIZEHINT "width" // recommended column width
#define KV_CHARSET "charset" // recommended charset (obsolete!)
#define KV_BAD "b" // number of times failed
#define KV_DATE "d" // last query date
#define KV_DATE2 "w" // last query date, compressed format, deprecated, currently ignored
#define KV_REMARK "r" // remark for this entry
#define KV_FAUX_AMI_F "ff" // false friend of this entry from org
#define KV_FAUX_AMI_T "tf" // false friend of this entry to org
#define KV_SYNONYM "y" // synonym (same meaning) of expr
#define KV_ANTONYM "a" // antonym (oppositite) of expr
#define KV_PRONUNCE "p" // how to pronounce this expression
#define KV_SELECTED "s" // entry selected for queries
#define KV_INACTIVE "i" // entry inactive (for queries)
#define KV_EXPRTYPE "t" // type of expression
#define KV_EXAMPLE "x" // example string with word
#define KV_USAGE "u" // usage label
#define KV_PARAPHRASE "h" // paraphrase for expression
/*
<type>
<desc no="1">My type 1</desc>
<desc no="2">My type 2</desc>
</type>
*/
#define KV_TYPE_GRP "type" // type descriptor group
#define KV_TYPE_DESC "desc" // type descriptor
#define KV_TYPE_NO "no" // type descriptor number
/*
<usage>
<desc no="1">My usage 1</desc>
<desc no="2">My usage 2</desc>
</type>
*/
#define KV_USAGE_GRP "usage" // usage descriptor group
#define KV_USAGE_DESC "desc" // usage descriptor
#define KV_USAGE_NO "no" // usage descriptor number
/*
<lesson width="138">
<desc no="1">Lesson #1</desc>
<desc no="2" query="1">Lesson #2</desc>
</lesson>
*/
#define KV_LESS_GRP "lesson" // lesson descriptor group
#define KV_LESS_CURR "current" // is current lesson
#define KV_LESS_DESC "desc" // lesson descriptor
#define KV_LESS_QUERY "query" // lesson contained in query
#define KV_LESS_NO "no" // lesson descriptor number
/*
<tense>
<desc no="1">user tense #1</desc>
<desc no="2">user tense #2</desc>
</tense>
*/
#define KV_TENSE_GRP "tense" // tense descriptor group
#define KV_TENSE_DESC "desc" // tense descriptor
#define KV_TENSE_NO "no" // tense descriptor number
/*
<options>
<sort on="1"/>
</options>
*/
#define KV_OPTION_GRP "options" // internal options group
#define KV_OPT_SORT "sort" // allow sorting
#define KV_BOOL_FLAG "on" // general boolean flag
/*
<article>
<e l="de"> lang determines also lang order in entries !!
<fi>eine</fi> which must NOT differ
<fd>die</fd>
<mi>ein</mi>
<md>der</md>
<ni>ein</ni>
<nd>das</nd>
</e>
</article>
*/
#define KV_ARTICLE_GRP "article" // article descriptor group
static const QLatin1String KV_ART_ENTRY( "e" ); // article entry
#define KV_ART_FD "fd" // female definite
#define KV_ART_MD "md" // male definite
#define KV_ART_ND "nd" // natural definite
#define KV_ART_FI "fi" // female indefinite
#define KV_ART_MI "mi" // male indefinite
#define KV_ART_NI "ni" // natural indefinite
/*
<comparison>
<l1>good</l1>
<l2>better</l2>
<l3>best</l3>
</comparison>
*/
#define KV_COMPARISON_GRP "comparison" // comparison descriptor group
#define KV_COMP_L1 "l1" // base form
#define KV_COMP_L2 "l2" // next form
#define KV_COMP_L3 "l3" // last form
/*
<multiplechoice>
<mc1>good</mc1>
<mc2>better</mc2>
<mc3>best</mc3>
<mc4>best 2</mc4>
<mc5>best 3</mc5>
</multiplechoice>
*/
#define KV_MULTIPLECHOICE_GRP "multiplechoice" // multiple choice descriptor group
#define KV_MC_1 "mc1" // choice 1
#define KV_MC_2 "mc2" // choice 2
#define KV_MC_3 "mc3" // choice 3
#define KV_MC_4 "mc4" // choice 4
#define KV_MC_5 "mc5" // choice 5
/*
<conjugation> used in header for definiton of "prefix"
<e l="de"> lang determines also lang order in entries !!
<s1>I</s1> which must NOT differ in subsequent <e>-tags
<s2>you<2>
<s3f>he</s3f>
<s3m>she</s3m>
<s3n>it</s3n>
<p1>we</p1>
<p2>you</p2>
<p3f>they</p3f>
<p3m>they</p3m>
<p3n>they</p3n>
</e>
</conjugation>
<conjugation> and in entry for definition of tenses of (irreg.) verbs
<t n="sipa">
<s1>go</s1>
<s2>go</s2>
<s3f>goes</s3f>
<s3m>goes</s3m>
<s3n>goes</s3n>
<p1>go</p1>
<p2>go</p2>
<p3f>go</p3f>
<p3m>go</p3m>
<p3n>go</p3n>
</t>
</conjugation>
*/
#define KV_CONJUG_GRP "conjugation" // conjugation descriptor group
#define KV_CON_ENTRY "e" // conjugation entry (header)
#define KV_CON_TYPE "t" // conjugation type (voc entries)
#define KV_CON_NAME "n" // conjugation type name (voc entries)
#define KV_CON_P1S "s1" // 1. person singular
#define KV_CON_P2S "s2" // 2. person singular
#define KV_CON_P3SF "s3f" // 3. person singular female
#define KV_CON_P3SM "s3m" // 3. person singular male
#define KV_CON_P3SN "s3n" // 3. person singular natural
#define KV_CON_P1P "p1" // 1. person plural
#define KV_CON_P2P "p2" // 2. person plural
#define KV_CON_P3PF "p3f" // 3. person plural female
#define KV_CON_P3PM "p3m" // 3. person plural male
#define KV_CON_P3PN "p3n" // 3. person plural natural
#define KV_CONJ_COMMON "common" // female contains common for all three
#endif // KVTMLDEFS_H
|