FTGL 2.1.3~rc5
FTGLExtrdFont.h
Go to the documentation of this file.
00001 /*
00002  * FTGL - OpenGL font library
00003  *
00004  * Copyright (c) 2001-2004 Henry Maddocks <ftgl@opengl.geek.nz>
00005  * Copyright (c) 2008 Sam Hocevar <sam@zoy.org>
00006  * Copyright (c) 2008 Sean Morrison <learner@brlcad.org>
00007  *
00008  * Permission is hereby granted, free of charge, to any person obtaining
00009  * a copy of this software and associated documentation files (the
00010  * "Software"), to deal in the Software without restriction, including
00011  * without limitation the rights to use, copy, modify, merge, publish,
00012  * distribute, sublicense, and/or sell copies of the Software, and to
00013  * permit persons to whom the Software is furnished to do so, subject to
00014  * the following conditions:
00015  *
00016  * The above copyright notice and this permission notice shall be
00017  * included in all copies or substantial portions of the Software.
00018  *
00019  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
00020  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
00021  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
00022  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
00023  * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
00024  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
00025  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
00026  */
00027 
00028 #ifndef __ftgl__
00029 #   warning This header is deprecated. Please use <FTGL/ftgl.h> from now.
00030 #   include <FTGL/ftgl.h>
00031 #endif
00032 
00033 #ifndef __FTExtrudeFont__
00034 #define __FTExtrudeFont__
00035 
00036 #ifdef __cplusplus
00037 
00038 
00046 class FTGL_EXPORT FTExtrudeFont : public FTFont
00047 {
00048     public:
00054         FTExtrudeFont(const char* fontFilePath);
00055 
00064         FTExtrudeFont(const unsigned char *pBufferBytes,
00065                       size_t bufferSizeInBytes);
00066 
00070         ~FTExtrudeFont();
00071 
00072     protected:
00082         virtual FTGlyph* MakeGlyph(FT_GlyphSlot slot);
00083 };
00084 
00085 #define FTGLExtrdFont FTExtrudeFont
00086 
00087 #endif //__cplusplus
00088 
00089 FTGL_BEGIN_C_DECLS
00090 
00100 FTGL_EXPORT FTGLfont *ftglCreateExtrudeFont(const char *file);
00101 
00102 FTGL_END_C_DECLS
00103 
00104 #endif // __FTExtrudeFont__
00105