xref: /AOO41X/main/cui/source/tabpages/chardlg.h (revision 4aea15755290bca05dce6ab14d803c73136c39bb)
1*4aea1575SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*4aea1575SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*4aea1575SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*4aea1575SAndrew Rist  * distributed with this work for additional information
6*4aea1575SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*4aea1575SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*4aea1575SAndrew Rist  * "License"); you may not use this file except in compliance
9*4aea1575SAndrew Rist  * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir  *
11*4aea1575SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir  *
13*4aea1575SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*4aea1575SAndrew Rist  * software distributed under the License is distributed on an
15*4aea1575SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*4aea1575SAndrew Rist  * KIND, either express or implied.  See the License for the
17*4aea1575SAndrew Rist  * specific language governing permissions and limitations
18*4aea1575SAndrew Rist  * under the License.
19cdf0e10cSrcweir  *
20*4aea1575SAndrew Rist  *************************************************************/
21*4aea1575SAndrew Rist 
22*4aea1575SAndrew Rist 
23cdf0e10cSrcweir #ifndef _SVX_CHARDLG_H
24cdf0e10cSrcweir #define _SVX_CHARDLG_H
25cdf0e10cSrcweir 
26cdf0e10cSrcweir // define ----------------------------------------------------------------
27cdf0e10cSrcweir 
28cdf0e10cSrcweir #define CHRDLG_UNDERLINE_NONE				0
29cdf0e10cSrcweir #define CHRDLG_UNDERLINE_SINGLE				1
30cdf0e10cSrcweir #define CHRDLG_UNDERLINE_DOUBLE				2
31cdf0e10cSrcweir #define CHRDLG_UNDERLINE_DOTTED				3
32cdf0e10cSrcweir #define CHRDLG_UNDERLINE_DONTKNOW			4
33cdf0e10cSrcweir #define CHRDLG_UNDERLINE_DASH				5
34cdf0e10cSrcweir #define CHRDLG_UNDERLINE_LONGDASH			6
35cdf0e10cSrcweir #define CHRDLG_UNDERLINE_DASHDOT			7
36cdf0e10cSrcweir #define CHRDLG_UNDERLINE_DASHDOTDOT			8
37cdf0e10cSrcweir #define CHRDLG_UNDERLINE_SMALLWAVE			9
38cdf0e10cSrcweir #define CHRDLG_UNDERLINE_WAVE				10
39cdf0e10cSrcweir #define CHRDLG_UNDERLINE_DOUBLEWAVE			11
40cdf0e10cSrcweir #define CHRDLG_UNDERLINE_BOLD				12
41cdf0e10cSrcweir #define CHRDLG_UNDERLINE_BOLDDOTTED			13
42cdf0e10cSrcweir #define CHRDLG_UNDERLINE_BOLDDASH			14
43cdf0e10cSrcweir #define CHRDLG_UNDERLINE_BOLDLONGDASH		15
44cdf0e10cSrcweir #define CHRDLG_UNDERLINE_BOLDDASHDOT		16
45cdf0e10cSrcweir #define CHRDLG_UNDERLINE_BOLDDASHDOTDOT		17
46cdf0e10cSrcweir #define CHRDLG_UNDERLINE_BOLDWAVE			18
47cdf0e10cSrcweir 
48cdf0e10cSrcweir #define CHRDLG_STRIKEOUT_NONE				0
49cdf0e10cSrcweir #define CHRDLG_STRIKEOUT_SINGLE				1
50cdf0e10cSrcweir #define CHRDLG_STRIKEOUT_DOUBLE				2
51cdf0e10cSrcweir #define CHRDLG_STRIKEOUT_DONTKNOW			3
52cdf0e10cSrcweir #define CHRDLG_STRIKEOUT_BOLD				4
53cdf0e10cSrcweir #define CHRDLG_STRIKEOUT_SLASH				5
54cdf0e10cSrcweir #define CHRDLG_STRIKEOUT_X					6
55cdf0e10cSrcweir 
56cdf0e10cSrcweir #define CHRDLG_ENCLOSE_NONE					0
57cdf0e10cSrcweir #define CHRDLG_ENCLOSE_ROUND				1
58cdf0e10cSrcweir #define CHRDLG_ENCLOSE_SQUARE				2
59cdf0e10cSrcweir #define CHRDLG_ENCLOSE_POINTED				3
60cdf0e10cSrcweir #define CHRDLG_ENCLOSE_CURVED				4
61cdf0e10cSrcweir #define CHRDLG_ENCLOSE_SPECIAL_CHAR			5
62cdf0e10cSrcweir 
63cdf0e10cSrcweir #define CHRDLG_POSITION_OVER				0
64cdf0e10cSrcweir #define CHRDLG_POSITION_UNDER				1
65cdf0e10cSrcweir 
66cdf0e10cSrcweir #endif
67cdf0e10cSrcweir 
68