* The FTFont<->FTFontImpl bridge is now complete.
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
diff --git a/src/FTFont/FTFont.cpp b/src/FTFont/FTFont.cpp
index 7889b64..549518f 100644
--- a/src/FTFont/FTFont.cpp
+++ b/src/FTFont/FTFont.cpp
@@ -62,31 +62,13 @@ FTFont::~FTFont()
bool FTFont::Attach(const char* fontFilePath)
{
- if(impl->face.Attach(fontFilePath))
- {
- impl->err = 0;
- return true;
- }
- else
- {
- impl->err = impl->face.Error();
- return false;
- }
+ return impl->Attach(fontFilePath);
}
bool FTFont::Attach(const unsigned char *pBufferBytes, size_t bufferSizeInBytes)
{
- if(impl->face.Attach(pBufferBytes, bufferSizeInBytes))
- {
- impl->err = 0;
- return true;
- }
- else
- {
- impl->err = impl->face.Error();
- return false;
- }
+ return impl->Attach(pBufferBytes, bufferSizeInBytes);
}
@@ -104,86 +86,85 @@ unsigned int FTFont::FaceSize() const
void FTFont::Depth(float depth)
{
- impl->Depth(depth);
+ return impl->Depth(depth);
}
void FTFont::Outset(float outset)
{
- impl->Outset(outset);
+ return impl->Outset(outset);
}
void FTFont::Outset(float front, float back)
{
- impl->Outset(front, back);
+ return impl->Outset(front, back);
}
bool FTFont::CharMap(FT_Encoding encoding)
{
- bool result = impl->glyphList->CharMap(encoding);
- impl->err = impl->glyphList->Error();
- return result;
+ return impl->CharMap(encoding);
}
unsigned int FTFont::CharMapCount()
{
- return impl->face.CharMapCount();
+ return impl->CharMapCount();
}
FT_Encoding* FTFont::CharMapList()
{
- return impl->face.CharMapList();
+ return impl->CharMapList();
}
void FTFont::UseDisplayList(bool useList)
{
- impl->useDisplayLists = useList;
+ return impl->UseDisplayList(useList);
}
+
float FTFont::Ascender() const
{
- return impl->charSize.Ascender();
+ return impl->Ascender();
}
float FTFont::Descender() const
{
- return impl->charSize.Descender();
+ return impl->Descender();
}
float FTFont::LineHeight() const
{
- return impl->charSize.Height();
+ return impl->LineHeight();
}
void FTFont::Render(const wchar_t* string)
{
- impl->Render(string);
+ return impl->Render(string);
}
void FTFont::Render(const char * string)
{
- impl->Render(string);
+ return impl->Render(string);
}
void FTFont::Render(const char * string, int renderMode)
{
- impl->Render(string, renderMode);
+ return impl->Render(string, renderMode);
}
void FTFont::Render(const wchar_t* string, int renderMode)
{
- impl->Render(string, renderMode);
+ return impl->Render(string, renderMode);
}
@@ -218,14 +199,14 @@ 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)
{
- impl->BBox(string, 0, -1, llx, lly, llz, urx, ury, urz);
+ return impl->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)
{
- impl->BBox(string, 0, -1, llx, lly, llz, urx, ury, urz);
+ return impl->BBox(string, 0, -1, llx, lly, llz, urx, ury, urz);
}
@@ -327,6 +308,33 @@ void FTFontImpl::Render(const wchar_t* string, int renderMode)
}
+bool FTFontImpl::Attach(const char* fontFilePath)
+{
+ if(!face.Attach(fontFilePath))
+ {
+ err = face.Error();
+ return false;
+ }
+
+ err = 0;
+ return true;
+}
+
+
+bool FTFontImpl::Attach(const unsigned char *pBufferBytes,
+ size_t bufferSizeInBytes)
+{
+ if(!face.Attach(pBufferBytes, bufferSizeInBytes))
+ {
+ err = face.Error();
+ return false;
+ }
+
+ err = 0;
+ return true;
+}
+
+
bool FTFontImpl::FaceSize(const unsigned int size, const unsigned int res)
{
charSize = face.Size(size, res);
@@ -371,6 +379,50 @@ void FTFontImpl::Outset(float front, float back)
}
+bool FTFontImpl::CharMap(FT_Encoding encoding)
+{
+ bool result = glyphList->CharMap(encoding);
+ err = glyphList->Error();
+ return result;
+}
+
+
+unsigned int FTFontImpl::CharMapCount()
+{
+ return face.CharMapCount();
+}
+
+
+FT_Encoding* FTFontImpl::CharMapList()
+{
+ return face.CharMapList();
+}
+
+
+void FTFontImpl::UseDisplayList(bool useList)
+{
+ useDisplayLists = useList;
+}
+
+
+float FTFontImpl::Ascender() const
+{
+ return charSize.Ascender();
+}
+
+
+float FTFontImpl::Descender() const
+{
+ return charSize.Descender();
+}
+
+
+float FTFontImpl::LineHeight() const
+{
+ return charSize.Height();
+}
+
+
template <typename T>
inline void FTFontImpl::BBoxI(const T* string, const int start, const int end,
float& llx, float& lly, float& llz,
diff --git a/src/FTFont/FTFontImpl.h b/src/FTFont/FTFontImpl.h
index 9c4c83f..438aba4 100644
--- a/src/FTFont/FTFontImpl.h
+++ b/src/FTFont/FTFontImpl.h
@@ -43,11 +43,29 @@ class FTFontImpl
protected:
FTFontImpl(char const *fontFilePath);
-
FTFontImpl(const unsigned char *pBufferBytes, size_t bufferSizeInBytes);
virtual ~FTFontImpl();
+ virtual bool Attach(const char* fontFilePath);
+
+ virtual bool Attach(const unsigned char *pBufferBytes,
+ size_t bufferSizeInBytes);
+
+ virtual bool CharMap(FT_Encoding encoding);
+
+ virtual unsigned int CharMapCount();
+
+ virtual FT_Encoding* CharMapList();
+
+ virtual void UseDisplayList(bool useList);
+
+ virtual float Ascender() const;
+
+ virtual float Descender() const;
+
+ virtual float LineHeight() const;
+
virtual void Render(const char* string);
virtual void Render(const char* string, int renderMode);