Revert "[Tizen] Disable indicator"
[platform/core/uifw/dali-adaptor.git] / dali-windows-backend / ExInclude / fribidi / fribidi-flags.h
1 /* FriBidi
2  * fribidi-flags.h - option flags
3  *
4  * $Id: fribidi-flags.h,v 1.1 2005/11/03 01:39:01 behdad Exp $
5  * $Author: behdad $
6  * $Date: 2005/11/03 01:39:01 $
7  * $Revision: 1.1 $
8  * $Source: /cvs/fribidi/fribidi2/lib/fribidi-flags.h,v $
9  *
10  * Author:
11  *   Behdad Esfahbod, 2005
12  *
13  * Copyright (C) 2005 Behdad Esfahbod
14  * 
15  * This library is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU Lesser General Public
17  * License as published by the Free Software Foundation; either
18  * version 2.1 of the License, or (at your option) any later version.
19  * 
20  * This library is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
23  * Lesser General Public License for more details.
24  * 
25  * You should have received a copy of the GNU Lesser General Public License
26  * along with this library, in a file named COPYING; if not, write to the
27  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
28  * Boston, MA 02111-1307, USA
29  *
30  * For licensing issues, contact <license@farsiweb.info>.
31  */
32 #ifndef _FRIBIDI_FLAGS_H
33 #define _FRIBIDI_FLAGS_H
34
35 #include "fribidi-common.h"
36
37 #include "fribidi-types.h"
38
39 #include "fribidi-begindecls.h"
40
41 typedef fribidi_uint32 FriBidiFlags;
42
43 /* 
44  * Define option flags that various functions use. Each mask has
45  * only one bit set.
46  */
47
48 #define FRIBIDI_FLAG_SHAPE_MIRRORING    0x00000001
49 #define FRIBIDI_FLAG_REORDER_NSM        0x00000002
50
51 #define FRIBIDI_FLAG_SHAPE_ARAB_PRES    0x00000100
52 #define FRIBIDI_FLAG_SHAPE_ARAB_LIGA    0x00000200
53 #define FRIBIDI_FLAG_SHAPE_ARAB_CONSOLE 0x00000400
54
55 #define FRIBIDI_FLAG_REMOVE_BIDI        0x00010000
56 #define FRIBIDI_FLAG_REMOVE_JOINING     0x00020000
57 #define FRIBIDI_FLAG_REMOVE_SPECIALS    0x00040000
58
59
60 /*
61  * And their combinations.
62  */
63
64 #define FRIBIDI_FLAGS_DEFAULT           ( \
65         FRIBIDI_FLAG_SHAPE_MIRRORING    | \
66         FRIBIDI_FLAG_REORDER_NSM        | \
67         FRIBIDI_FLAG_REMOVE_SPECIALS    )
68
69 #define FRIBIDI_FLAGS_ARABIC            ( \
70         FRIBIDI_FLAG_SHAPE_ARAB_PRES    | \
71         FRIBIDI_FLAG_SHAPE_ARAB_LIGA    )
72
73 #include "fribidi-enddecls.h"
74
75 #endif /* !_FRIBIDI_FLAGS_H */
76 /* Editor directions:
77  * vim:textwidth=78:tabstop=8:shiftwidth=2:autoindent:cindent
78  */