3 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version. The Blender
9 * Foundation also sells licenses for use in proprietary software under
10 * the Blender License. See http://www.blender.org/BL/ for information
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 * Copyright (C) 2002 Blender Foundation. All Rights Reserved.
24 * The Original Code is: all of this file.
26 * Contributor(s): none yet.
28 * ***** END GPL/BL DUAL LICENSE BLOCK *****
34 * Copyright (C) 2001 NaN Technologies B.V.
35 * Allows you to determine which fonts to include in the library.
38 #ifndef __FTF_SETTINGS_H
39 #define __FTF_SETTINGS_H
41 #define FTF_BIT(num) ((unsigned int)1 << (num))
42 #define FTF_NO_TRANSCONV 0
43 #define FTF_INPUT_SYSTEM_ENCODING FTF_BIT(1)
44 #define FTF_USE_GETTEXT FTF_BIT(2)
45 #define FTF_INPUT_UTF8 FTF_BIT(3)
46 #define FTF_PIXMAPFONT 0
47 #define FTF_TEXTUREFONT 1
49 #endif /* __FTF_SETTINGS_H */