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