xref: /haiku/headers/private/interface/FontPrivate.h (revision b2cc345461400d6944e2de35ec6decc8d1af8751)
1*b2cc3454SAxel Dörfler /*
2*b2cc3454SAxel Dörfler  * Copyright 2005, Haiku, Inc. All Rights Reserved.
3*b2cc3454SAxel Dörfler  * Distributed under the terms of the MIT License.
4*b2cc3454SAxel Dörfler  */
5*b2cc3454SAxel Dörfler #ifndef FONT_PRIVATE_H
6*b2cc3454SAxel Dörfler #define FONT_PRIVATE_H
7*b2cc3454SAxel Dörfler 
8*b2cc3454SAxel Dörfler 
9*b2cc3454SAxel Dörfler // extra flags (shares B_IS_FIXED and B_HAS_TUNED_FONT)
10*b2cc3454SAxel Dörfler enum {
11*b2cc3454SAxel Dörfler 	B_PRIVATE_FONT_IS_FULL_AND_HALF_FIXED	= 0x04,
12*b2cc3454SAxel Dörfler 	B_PRIVATE_FONT_HAS_KERNING				= 0x08,
13*b2cc3454SAxel Dörfler 	B_PRIVATE_FONT_DIRECTION_MASK			= 0x30,
14*b2cc3454SAxel Dörfler };
15*b2cc3454SAxel Dörfler 
16*b2cc3454SAxel Dörfler #define B_PRIVATE_FONT_DIRECTION_SHIFT 8
17*b2cc3454SAxel Dörfler 
18*b2cc3454SAxel Dörfler #endif	/* FONT_PRIVATE_H */
19