xref: /trunk/main/editeng/inc/editeng/eeitem.hxx (revision 914d351e5f5b84e4342a86d6ab8d4aca7308b9bd)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 #ifndef _EEITEM_HXX
25 #define _EEITEM_HXX
26 
27 #define EE_ITEMS_START              3989
28 
29 // Absatzattribute:
30 #define EE_PARA_START               (EE_ITEMS_START+0)
31 #define EE_PARA_WRITINGDIR          (EE_ITEMS_START+0)
32 #define EE_PARA_XMLATTRIBS          (EE_ITEMS_START+1)
33 #define EE_PARA_HANGINGPUNCTUATION  (EE_ITEMS_START+2)
34 #define EE_PARA_FORBIDDENRULES      (EE_ITEMS_START+3)
35 #define EE_PARA_ASIANCJKSPACING     (EE_ITEMS_START+4)
36 #define EE_PARA_NUMBULLET           (EE_ITEMS_START+5)
37 #define EE_PARA_HYPHENATE           (EE_ITEMS_START+6)
38 #define EE_PARA_BULLETSTATE         (EE_ITEMS_START+7)
39 #define EE_PARA_OUTLLRSPACE         (EE_ITEMS_START+8)
40 #define EE_PARA_OUTLLEVEL           (EE_ITEMS_START+9)
41 #define EE_PARA_BULLET              (EE_ITEMS_START+10)
42 #define EE_PARA_LRSPACE             (EE_ITEMS_START+11)
43 #define EE_PARA_ULSPACE             (EE_ITEMS_START+12)
44 #define EE_PARA_SBL                 (EE_ITEMS_START+13)
45 #define EE_PARA_JUST                (EE_ITEMS_START+14)
46 #define EE_PARA_TABS                (EE_ITEMS_START+15)
47 #define EE_PARA_END                 (EE_ITEMS_START+15)
48 
49 // Zeichenattribute:
50 #define EE_CHAR_START               (EE_ITEMS_START+16)
51 #define EE_CHAR_COLOR               (EE_ITEMS_START+16)
52 #define EE_CHAR_FONTINFO            (EE_ITEMS_START+17)
53 #define EE_CHAR_FONTHEIGHT          (EE_ITEMS_START+18)
54 #define EE_CHAR_FONTWIDTH           (EE_ITEMS_START+19)
55 #define EE_CHAR_WEIGHT              (EE_ITEMS_START+20)
56 #define EE_CHAR_UNDERLINE           (EE_ITEMS_START+21)
57 #define EE_CHAR_STRIKEOUT           (EE_ITEMS_START+22)
58 #define EE_CHAR_ITALIC              (EE_ITEMS_START+23)
59 #define EE_CHAR_OUTLINE             (EE_ITEMS_START+24)
60 #define EE_CHAR_SHADOW              (EE_ITEMS_START+25)
61 #define EE_CHAR_ESCAPEMENT          (EE_ITEMS_START+26)
62 #define EE_CHAR_PAIRKERNING         (EE_ITEMS_START+27)
63 #define EE_CHAR_KERNING             (EE_ITEMS_START+28)
64 #define EE_CHAR_WLM                 (EE_ITEMS_START+29)
65 #define EE_CHAR_LANGUAGE            (EE_ITEMS_START+30)
66 #define EE_CHAR_LANGUAGE_CJK        (EE_ITEMS_START+31)
67 #define EE_CHAR_LANGUAGE_CTL        (EE_ITEMS_START+32)
68 #define EE_CHAR_FONTINFO_CJK        (EE_ITEMS_START+33)
69 #define EE_CHAR_FONTINFO_CTL        (EE_ITEMS_START+34)
70 #define EE_CHAR_FONTHEIGHT_CJK      (EE_ITEMS_START+35)
71 #define EE_CHAR_FONTHEIGHT_CTL      (EE_ITEMS_START+36)
72 #define EE_CHAR_WEIGHT_CJK          (EE_ITEMS_START+37)
73 #define EE_CHAR_WEIGHT_CTL          (EE_ITEMS_START+38)
74 #define EE_CHAR_ITALIC_CJK          (EE_ITEMS_START+39)
75 #define EE_CHAR_ITALIC_CTL          (EE_ITEMS_START+40)
76 #define EE_CHAR_EMPHASISMARK        (EE_ITEMS_START+41)
77 #define EE_CHAR_RELIEF              (EE_ITEMS_START+42)
78 #define EE_CHAR_RUBI_DUMMY          (EE_ITEMS_START+43)
79 #define EE_CHAR_XMLATTRIBS          (EE_ITEMS_START+44)
80 #define EE_CHAR_OVERLINE            (EE_ITEMS_START+45)
81 #define EE_CHAR_END                 (EE_ITEMS_START+45)
82 
83 
84 #define EE_FEATURE_START            (EE_ITEMS_START+46)
85 #define EE_FEATURE_TAB              (EE_ITEMS_START+46)
86 #define EE_FEATURE_LINEBR           (EE_ITEMS_START+47)
87 #define EE_FEATURE_NOTCONV          (EE_ITEMS_START+48)
88 #define EE_FEATURE_FIELD            (EE_ITEMS_START+49)
89 #define EE_FEATURE_END              (EE_ITEMS_START+49)
90 
91 #define EE_ITEMS_END                (EE_ITEMS_START+49)
92 
93 #define EDITITEMCOUNT ( EE_ITEMS_END - EE_ITEMS_START + 1 )
94 
95 #endif // _EEITEM_HXX
96