1 /* AbiSource Program Utilities
2  * Copyright (C) 2001 Tomas Frydrych
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA.
18  */
19 
20 #ifndef UT_OVERCHARS_H
21 #define UT_OVERCHARS_H
22 
23 /* pre-emptive dismissal; ut_types.h is needed by just about everything,
24  * so even if it's commented out in-file that's still a lot of work for
25  * the preprocessor to do...
26  */
27 #ifndef UT_TYPES_H
28 #include "ut_types.h"
29 #endif
30 
31 /* for comments on signficance of these constants see the cpp file */
32 
33 #define UT_NOT_OVERSTRIKING 0
34 #define UT_OVERSTRIKING_LTR 1
35 #define UT_OVERSTRIKING_RTL 2
36 
37 #define UT_OVERSTRIKING_RIGHT  0x10000000
38 #define UT_OVERSTRIKING_LEFT   0x20000000
39 #define UT_OVERSTRIKING_CENTRE 0x00000000
40 #define UT_OVERSTRIKING_DIR    0x0fffffff
41 #define UT_OVERSTRIKING_TYPE   0xf0000000
42 
43 UT_uint32 UT_isOverstrikingChar(UT_UCSChar c);
44 #endif
45 
46