* Remove all method implementations from the main FTFont.h, FTLayout.h and FTGlyph.h headers. Since they use private members, they belong to their respective .cpp files.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
diff --git a/include/FTFont.h b/include/FTFont.h
index cd7e3d8..838a4db 100644
--- a/include/FTFont.h
+++ b/include/FTFont.h
@@ -162,7 +162,7 @@ class FTGL_EXPORT FTFont
*
* @param depth The extrusion distance.
*/
- virtual void Depth(float depth) {}
+ virtual void Depth(float depth);
/**
* Set the outset distance for the font. Only implemented by
@@ -170,7 +170,7 @@ class FTGL_EXPORT FTFont
*
* @param outset The outset distance.
*/
- virtual void Outset(float outset) {}
+ virtual void Outset(float outset);
/**
* Set the front and back outset distances for the font. Only
@@ -179,7 +179,7 @@ class FTGL_EXPORT FTFont
* @param front The front outset distance.
* @param back The back outset distance.
*/
- virtual void Outset(float front, float back) {}
+ virtual void Outset(float front, float back);
/**
* Enable or disable the use of Display Lists inside FTGL
@@ -262,10 +262,7 @@ class FTGL_EXPORT FTFont
* @param urz upper right far z coord
*/
void BBox(const char* string, float& llx, float& lly, float& llz,
- float& urx, float& ury, float& urz)
- {
- BBox(string, 0, -1, llx, lly, llz, urx, ury, urz);
- }
+ float& urx, float& ury, float& urz);
/**
* Get the bounding box for a string.
@@ -279,10 +276,7 @@ class FTGL_EXPORT FTFont
* @param urz upper right far z coord
*/
void BBox(const wchar_t* string, float& llx, float& lly, float& llz,
- float& urx, float& ury, float& urz)
- {
- BBox(string, 0, -1, llx, lly, llz, urx, ury, urz);
- }
+ float& urx, float& ury, float& urz);
/**
* Get the advance width for a string.
@@ -335,7 +329,7 @@ class FTGL_EXPORT FTFont
*
* @return The current error code.
*/
- FT_Error Error() const { return err; }
+ FT_Error Error() const;
protected:
/**
diff --git a/include/FTGlyph.h b/include/FTGlyph.h
index d435d37..97b302f 100644
--- a/include/FTGlyph.h
+++ b/include/FTGlyph.h
@@ -88,21 +88,21 @@ class FTGL_EXPORT FTGlyph
*
* @return advance width.
*/
- const FTPoint& Advance() const { return advance; }
+ const FTPoint& Advance() const;
/**
* Return the bounding box for this glyph.
*
* @return bounding box.
*/
- const FTBBox& BBox() const { return bBox; }
+ const FTBBox& BBox() const;
/**
* Queries for errors.
*
* @return The current error code.
*/
- FT_Error Error() const { return err; }
+ FT_Error Error() const;
protected:
/**
diff --git a/include/FTLayout.h b/include/FTLayout.h
index 6940b2e..f8cd8f1 100644
--- a/include/FTLayout.h
+++ b/include/FTLayout.h
@@ -128,8 +128,7 @@ class FTGL_EXPORT FTLayout
* @see FTFont::DoRender
*/
void DoRender(FTFont *font, const unsigned int chr,
- const unsigned int nextChr, int renderMode)
- { font->DoRender(chr, nextChr, pen, renderMode); }
+ const unsigned int nextChr, int renderMode);
/**
* Expose <code>FTFont::CheckGlyph</code> method to derived classes.
@@ -137,29 +136,26 @@ class FTGL_EXPORT FTLayout
* @param font The font that contains the glyph.
* @param chr character index
*/
- void CheckGlyph(FTFont *font, const unsigned int Chr)
- { font->CheckGlyph(Chr); }
-
- /**
- * Expose the FTFont <code>glyphList</code> to our derived classes.
- *
- * @param font The font to perform the query on.
- * @param Char The character corresponding to the glyph to query.
- *
- * @return A pointer to the glyphList of font.
- */
- FTGlyphContainer *GetGlyphs(FTFont *font)
- { return(font->glyphList); }
-
- /**
- * Expose the FTFont <code>charSize</code> to our derived classes.
- *
- * @param The font to perform the query on.
- *
- * @return A reference to the charSize object of font.
- */
- FTSize &GetCharSize(FTFont *font)
- { return(font->charSize); }
+ void CheckGlyph(FTFont *font, const unsigned int Chr);
+
+ /**
+ * Expose the FTFont <code>glyphList</code> to our derived classes.
+ *
+ * @param font The font to perform the query on.
+ * @param Char The character corresponding to the glyph to query.
+ *
+ * @return A pointer to the glyphList of font.
+ */
+ FTGlyphContainer *GetGlyphs(FTFont *font);
+
+ /**
+ * Expose the FTFont <code>charSize</code> to our derived classes.
+ *
+ * @param The font to perform the query on.
+ *
+ * @return A reference to the charSize object of font.
+ */
+ FTSize &GetCharSize(FTFont *font);
};
#endif //__cplusplus
diff --git a/src/FTFont.cpp b/src/FTFont.cpp
index 2076f3b..ffd6d39 100644
--- a/src/FTFont.cpp
+++ b/src/FTFont.cpp
@@ -129,6 +129,24 @@ unsigned int FTFont::FaceSize() const
}
+void FTFont::Depth(float depth)
+{
+ ;
+}
+
+
+void FTFont::Outset(float outset)
+{
+ ;
+}
+
+
+void FTFont::Outset(float front, float back)
+{
+ ;
+}
+
+
bool FTFont::CharMap(FT_Encoding encoding)
{
bool result = glyphList->CharMap(encoding);
@@ -231,6 +249,20 @@ void FTFont::BBox(const wchar_t* string, const int start, const int end,
}
+void FTFont::BBox(const char* string, float& llx, float& lly, float& llz,
+ float& urx, float& ury, float& urz)
+{
+ BBox(string, 0, -1, llx, lly, llz, urx, ury, urz);
+}
+
+
+void FTFont::BBox(const wchar_t* string, float& llx, float& lly, float& llz,
+ float& urx, float& ury, float& urz)
+{
+ BBox(string, 0, -1, llx, lly, llz, urx, ury, urz);
+}
+
+
template <typename T>
inline float FTFont::AdvanceI(const T* string)
{
@@ -314,6 +346,12 @@ void FTFont::Render(const wchar_t* string, int renderMode)
}
+FT_Error FTFont::Error() const
+{
+ return err;
+}
+
+
bool FTFont::CheckGlyph(const unsigned int characterCode)
{
if(NULL == glyphList->Glyph(characterCode))
diff --git a/src/FTGlyph.cpp b/src/FTGlyph.cpp
index e4ec725..6f3f79c 100644
--- a/src/FTGlyph.cpp
+++ b/src/FTGlyph.cpp
@@ -49,3 +49,22 @@ FTGlyph::FTGlyph(FT_GlyphSlot glyph, bool useList) : err(0)
FTGlyph::~FTGlyph()
{}
+
+
+const FTPoint& FTGlyph::Advance() const
+{
+ return advance;
+}
+
+
+const FTBBox& FTGlyph::BBox() const
+{
+ return bBox;
+}
+
+
+FT_Error FTGlyph::Error() const
+{
+ return err;
+}
+
diff --git a/src/FTLayout.cpp b/src/FTLayout.cpp
new file mode 100644
index 0000000..80e19d3
--- /dev/null
+++ b/src/FTLayout.cpp
@@ -0,0 +1,64 @@
+/*
+ * FTGL - OpenGL font library
+ *
+ * Copyright (c) 2001-2004 Henry Maddocks <ftgl@opengl.geek.nz>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be
+ * included in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+ * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+ * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+ * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ *
+ * Alternatively, you can redistribute and/or modify this software under
+ * the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 of the License,
+ * or (at your option) any later version.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#include "config.h"
+
+#include "FTPoint.h"
+#include "FTFont.h"
+#include "FTLayout.h"
+
+void FTLayout::DoRender(FTFont *font, const unsigned int chr,
+ const unsigned int nextChr, int renderMode)
+{
+ font->DoRender(chr, nextChr, pen, renderMode);
+}
+
+
+void FTLayout::CheckGlyph(FTFont *font, const unsigned int Chr)
+{
+ font->CheckGlyph(Chr);
+}
+
+
+FTGlyphContainer * FTLayout::GetGlyphs(FTFont *font)
+{
+ return(font->glyphList);
+}
+
+
+FTSize & FTLayout::GetCharSize(FTFont *font)
+{
+ return(font->charSize);
+}
+
diff --git a/src/Makefile.am b/src/Makefile.am
index bfc482d..b074a7e 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -17,6 +17,7 @@ libftgl_la_SOURCES = \
FTGlyph.cpp \
FTGlyphContainer.cpp \
FTGlue.cpp \
+ FTLayout.cpp \
FTLibrary.cpp \
FTOutlineGlyph.cpp \
FTPixmapGlyph.cpp \