update credits
[LibreOffice.git] / include / editeng / eeitem.hxx
blob04ce68ce1ef570b81835fb10eb6b2458cba15f69
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef EEITEM_HXX
21 #define EEITEM_HXX
23 #include <svl/solar.hrc>
25 #define EE_ITEMS_START (OWN_ATTR_VALUE_END+1)
27 // Paragraph attributes:
28 #define EE_PARA_START (EE_ITEMS_START+0)
29 #define EE_PARA_WRITINGDIR (EE_ITEMS_START+0)
30 #define EE_PARA_XMLATTRIBS (EE_ITEMS_START+1)
31 #define EE_PARA_HANGINGPUNCTUATION (EE_ITEMS_START+2)
32 #define EE_PARA_FORBIDDENRULES (EE_ITEMS_START+3)
33 #define EE_PARA_ASIANCJKSPACING (EE_ITEMS_START+4)
34 #define EE_PARA_NUMBULLET (EE_ITEMS_START+5)
35 #define EE_PARA_HYPHENATE (EE_ITEMS_START+6)
36 #define EE_PARA_BULLETSTATE (EE_ITEMS_START+7)
37 #define EE_PARA_OUTLLRSPACE (EE_ITEMS_START+8)
38 #define EE_PARA_OUTLLEVEL (EE_ITEMS_START+9)
39 #define EE_PARA_BULLET (EE_ITEMS_START+10)
40 #define EE_PARA_LRSPACE (EE_ITEMS_START+11)
41 #define EE_PARA_ULSPACE (EE_ITEMS_START+12)
42 #define EE_PARA_SBL (EE_ITEMS_START+13)
43 #define EE_PARA_JUST (EE_ITEMS_START+14)
44 #define EE_PARA_TABS (EE_ITEMS_START+15)
45 #define EE_PARA_JUST_METHOD (EE_ITEMS_START+16)
46 #define EE_PARA_VER_JUST (EE_ITEMS_START+17)
47 #define EE_PARA_END (EE_ITEMS_START+17)
49 // Character attributes:
50 #define EE_CHAR_START (EE_ITEMS_START+18)
51 #define EE_CHAR_COLOR (EE_ITEMS_START+18)
52 #define EE_CHAR_FONTINFO (EE_ITEMS_START+19)
53 #define EE_CHAR_FONTHEIGHT (EE_ITEMS_START+20)
54 #define EE_CHAR_FONTWIDTH (EE_ITEMS_START+21)
55 #define EE_CHAR_WEIGHT (EE_ITEMS_START+22)
56 #define EE_CHAR_UNDERLINE (EE_ITEMS_START+23)
57 #define EE_CHAR_STRIKEOUT (EE_ITEMS_START+24)
58 #define EE_CHAR_ITALIC (EE_ITEMS_START+25)
59 #define EE_CHAR_OUTLINE (EE_ITEMS_START+26)
60 #define EE_CHAR_SHADOW (EE_ITEMS_START+27)
61 #define EE_CHAR_ESCAPEMENT (EE_ITEMS_START+28)
62 #define EE_CHAR_PAIRKERNING (EE_ITEMS_START+29)
63 #define EE_CHAR_KERNING (EE_ITEMS_START+30)
64 #define EE_CHAR_WLM (EE_ITEMS_START+31)
65 #define EE_CHAR_LANGUAGE (EE_ITEMS_START+32)
66 #define EE_CHAR_LANGUAGE_CJK (EE_ITEMS_START+33)
67 #define EE_CHAR_LANGUAGE_CTL (EE_ITEMS_START+34)
68 #define EE_CHAR_FONTINFO_CJK (EE_ITEMS_START+35)
69 #define EE_CHAR_FONTINFO_CTL (EE_ITEMS_START+36)
70 #define EE_CHAR_FONTHEIGHT_CJK (EE_ITEMS_START+37)
71 #define EE_CHAR_FONTHEIGHT_CTL (EE_ITEMS_START+38)
72 #define EE_CHAR_WEIGHT_CJK (EE_ITEMS_START+39)
73 #define EE_CHAR_WEIGHT_CTL (EE_ITEMS_START+40)
74 #define EE_CHAR_ITALIC_CJK (EE_ITEMS_START+41)
75 #define EE_CHAR_ITALIC_CTL (EE_ITEMS_START+42)
76 #define EE_CHAR_EMPHASISMARK (EE_ITEMS_START+43)
77 #define EE_CHAR_RELIEF (EE_ITEMS_START+44)
78 #define EE_CHAR_RUBI_DUMMY (EE_ITEMS_START+45)
79 #define EE_CHAR_XMLATTRIBS (EE_ITEMS_START+46)
80 #define EE_CHAR_OVERLINE (EE_ITEMS_START+47)
81 #define EE_CHAR_END (EE_ITEMS_START+47)
84 #define EE_FEATURE_START (EE_ITEMS_START+48)
85 #define EE_FEATURE_TAB (EE_ITEMS_START+48)
86 #define EE_FEATURE_LINEBR (EE_ITEMS_START+49)
87 #define EE_FEATURE_NOTCONV (EE_ITEMS_START+50)
88 #define EE_FEATURE_FIELD (EE_ITEMS_START+51)
89 #define EE_FEATURE_END (EE_ITEMS_START+51)
91 #define EE_ITEMS_END (EE_ITEMS_START+51)
93 #define EDITITEMCOUNT ( EE_ITEMS_END - EE_ITEMS_START + 1 )
95 #endif // _EEITEM_HXX
97 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */