tdf115103: find data source if sDataSource/sCommand are empty
[LibreOffice.git] / starmath / inc / types.hxx
blob78e33b62905a062d1aac92e3a1016c7b70b38fd5
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 INCLUDED_STARMATH_INC_TYPES_HXX
21 #define INCLUDED_STARMATH_INC_TYPES_HXX
23 #include <sal/types.h>
24 #define FONTNAME_MATH "OpenSymbol"
27 enum SmPrintSize { PRINT_SIZE_NORMAL, PRINT_SIZE_SCALED, PRINT_SIZE_ZOOMED };
30 // definitions for characters from the 'StarSymbol' font
31 // (some chars have more than one alias!)
32 //! Note: not listed here does not(!) mean "not used"
33 //! (see %alpha ... %gamma for example)
35 sal_Unicode const MS_FACT = 0x0021;
36 sal_Unicode const MS_INFINITY = 0x221E;
37 sal_Unicode const MS_SLASH = 0x002F;
39 sal_Unicode const MS_NDIVIDES = 0x2224;
40 sal_Unicode const MS_DRARROW = 0x21D2;
41 sal_Unicode const MS_DLARROW = 0x21D0;
42 sal_Unicode const MS_DLRARROW = 0x21D4;
43 sal_Unicode const MS_OVERBRACE = 0x23DE;
44 sal_Unicode const MS_UNDERBRACE = 0x23DF;
45 sal_Unicode const MS_CIRC = 0x2218;
46 sal_Unicode const MS_ASSIGN = 0x003D;
47 sal_Unicode const MS_ERROR = 0x00BF;
49 sal_Unicode const MS_NEQ = 0x2260;
50 sal_Unicode const MS_PLUS = 0x002B;
51 sal_Unicode const MS_MINUS = 0x2212;
52 sal_Unicode const MS_MULTIPLY = 0x2217;
53 sal_Unicode const MS_TIMES = 0x00D7;
54 sal_Unicode const MS_CDOT = 0x22C5;
55 sal_Unicode const MS_DIV = 0x00F7;
56 sal_Unicode const MS_PLUSMINUS = 0x00B1;
57 sal_Unicode const MS_MINUSPLUS = 0x2213;
58 sal_Unicode const MS_OPLUS = 0x2295;
59 sal_Unicode const MS_OMINUS = 0x2296;
60 sal_Unicode const MS_OTIMES = 0x2297;
61 sal_Unicode const MS_ODIVIDE = 0x2298;
62 sal_Unicode const MS_ODOT = 0x2299;
63 sal_Unicode const MS_UNION = 0x222A;
64 sal_Unicode const MS_INTERSECT = 0x2229;
66 sal_Unicode const MS_LT = 0x003C;
67 sal_Unicode const MS_GT = 0x003E;
68 sal_Unicode const MS_LE = 0x2264;
69 sal_Unicode const MS_GE = 0x2265;
70 sal_Unicode const MS_LESLANT = 0x2A7D;
71 sal_Unicode const MS_GESLANT = 0x2A7E;
72 sal_Unicode const MS_LL = 0x226A;
73 sal_Unicode const MS_GG = 0x226B;
74 sal_Unicode const MS_SIM = 0x223C;
75 sal_Unicode const MS_SIMEQ = 0x2243;
76 sal_Unicode const MS_APPROX = 0x2248;
77 sal_Unicode const MS_DEF = 0x225D;
78 sal_Unicode const MS_EQUIV = 0x2261;
79 sal_Unicode const MS_PROP = 0x221D;
80 sal_Unicode const MS_PARTIAL = 0x2202;
82 sal_Unicode const MS_SUBSET = 0x2282;
83 sal_Unicode const MS_SUPSET = 0x2283;
84 sal_Unicode const MS_SUBSETEQ = 0x2286;
85 sal_Unicode const MS_SUPSETEQ = 0x2287;
86 sal_Unicode const MS_NSUBSET = 0x2284;
87 sal_Unicode const MS_NSUPSET = 0x2285;
88 sal_Unicode const MS_NSUBSETEQ = 0x2288;
89 sal_Unicode const MS_NSUPSETEQ = 0x2289;
90 sal_Unicode const MS_IN = 0x2208;
91 sal_Unicode const MS_NOTIN = 0x2209;
92 sal_Unicode const MS_EXISTS = 0x2203;
93 sal_Unicode const MS_NOTEXISTS = 0x2204;
94 sal_Unicode const MS_BACKEPSILON = 0x220D;
95 sal_Unicode const MS_ALEPH = 0x2135;
96 sal_Unicode const MS_IM = 0x2111;
97 sal_Unicode const MS_RE = 0x211C;
98 sal_Unicode const MS_WP = 0x2118;
100 sal_Unicode const MS_LINE = 0x2223;
101 sal_Unicode const MS_VERTLINE = 0x007C;
102 sal_Unicode const MS_DLINE = 0x2225;
103 sal_Unicode const MS_DVERTLINE = 0x2016;
104 sal_Unicode const MS_ORTHO = 0x22A5;
105 sal_Unicode const MS_DOTSLOW = 0x2026;
106 sal_Unicode const MS_DOTSAXIS = 0x22EF;
107 sal_Unicode const MS_DOTSVERT = 0x22EE;
108 sal_Unicode const MS_DOTSUP = 0x22F0;
109 sal_Unicode const MS_DOTSDOWN = 0x22F1;
110 sal_Unicode const MS_TRANSR = 0x22B6;
111 sal_Unicode const MS_TRANSL = 0x22B7;
112 sal_Unicode const MS_BACKSLASH = 0x2216;
113 sal_Unicode const MS_NEG = 0x00AC;
115 sal_Unicode const MS_FORALL = 0x2200;
116 sal_Unicode const MS_NABLA = 0x2207;
117 sal_Unicode const MS_PROD = 0x220F;
118 sal_Unicode const MS_COPROD = 0x2210;
119 sal_Unicode const MS_SUM = 0x2211;
120 sal_Unicode const MS_SQRT = 0x221A;
121 sal_Unicode const MS_INT = 0x222B;
122 sal_Unicode const MS_IINT = 0x222C;
123 sal_Unicode const MS_IIINT = 0x222D;
124 sal_Unicode const MS_LINT = 0x222E;
125 sal_Unicode const MS_LLINT = 0x222F;
126 sal_Unicode const MS_LLLINT = 0x2230;
128 sal_Unicode const MS_GRAVE = 0x0060;
129 sal_Unicode const MS_COMBGRAVE = 0x0300;
130 sal_Unicode const MS_ACUTE = 0x00B4;
131 sal_Unicode const MS_COMBACUTE = 0x0301;
132 sal_Unicode const MS_HAT = 0x005E;
133 sal_Unicode const MS_COMBHAT = 0x0302;
134 sal_Unicode const MS_TILDE = 0x007E;
135 sal_Unicode const MS_COMBTILDE = 0x0303;
136 sal_Unicode const MS_BAR = 0x00AF;
137 sal_Unicode const MS_COMBBAR = 0x0304;
138 sal_Unicode const MS_BREVE = 0x02D8;
139 sal_Unicode const MS_COMBBREVE = 0x0306;
140 sal_Unicode const MS_CIRCLE = 0x02DA;
141 sal_Unicode const MS_COMBCIRCLE = 0x030A;
142 sal_Unicode const MS_CHECK = 0x02C7;
143 sal_Unicode const MS_COMBCHECK = 0x030C;
144 sal_Unicode const MS_VEC = 0x20D7;
145 sal_Unicode const MS_DOT = 0x02D9;
146 sal_Unicode const MS_DDOT = 0x00A8;
147 sal_Unicode const MS_COMBDOT = 0x0307;
148 sal_Unicode const MS_COMBDDOT = 0x0308;
149 sal_Unicode const MS_DDDOT = 0x20DB;
150 sal_Unicode const MS_AND = 0x2227;
151 sal_Unicode const MS_OR = 0x2228;
152 sal_Unicode const MS_NI = 0x220B;
153 sal_Unicode const MS_EMPTYSET = 0x2205;
155 sal_Unicode const MS_LPARENT = 0x0028;
156 sal_Unicode const MS_RPARENT = 0x0029;
157 sal_Unicode const MS_LBRACKET = 0x005B;
158 sal_Unicode const MS_RBRACKET = 0x005D;
159 sal_Unicode const MS_LBRACE = 0x007B;
160 sal_Unicode const MS_RBRACE = 0x007D;
161 sal_Unicode const MS_LCEIL = 0x2308;
162 sal_Unicode const MS_RCEIL = 0x2309;
163 sal_Unicode const MS_LFLOOR = 0x230A;
164 sal_Unicode const MS_RFLOOR = 0x230B;
165 sal_Unicode const MS_LANGLE = 0x2329;
166 sal_Unicode const MS_RANGLE = 0x232A;
167 sal_Unicode const MS_LDBRACKET = 0x27E6;
168 sal_Unicode const MS_RDBRACKET = 0x27E7;
169 sal_Unicode const MS_LMATHANGLE = 0x27E8;
170 sal_Unicode const MS_RMATHANGLE = 0x27E9;
172 sal_Unicode const MS_PLACE = 0x2751;
174 sal_Unicode const MS_LAMBDABAR = 0x019B;
175 sal_Unicode const MS_HBAR = 0x210F;
176 sal_Unicode const MS_LEFTARROW = 0x2190;
177 sal_Unicode const MS_UPARROW = 0x2191;
178 sal_Unicode const MS_RIGHTARROW = 0x2192;
179 sal_Unicode const MS_DOWNARROW = 0x2193;
180 sal_Unicode const MS_SETN = 0x2115;
181 sal_Unicode const MS_SETZ = 0x2124;
182 sal_Unicode const MS_SETQ = 0x211A;
183 sal_Unicode const MS_SETR = 0x211D;
184 sal_Unicode const MS_SETC = 0x2102;
186 sal_Unicode const MS_PERCENT = 0x0025;
188 sal_Unicode const MS_PRECEDES = 0x227A;
189 sal_Unicode const MS_PRECEDESEQUAL = 0x227C;
190 sal_Unicode const MS_PRECEDESEQUIV = 0x227E;
191 sal_Unicode const MS_SUCCEEDS = 0x227B;
192 sal_Unicode const MS_SUCCEEDSEQUAL = 0x227D;
193 sal_Unicode const MS_SUCCEEDSEQUIV = 0x227F;
194 sal_Unicode const MS_NOTPRECEDES = 0x2280;
195 sal_Unicode const MS_NOTSUCCEEDS = 0x2281;
197 #endif
199 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */