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