提交 0375bdd2 编写于 作者: M Martin Hosken 提交者: Behdad Esfahbod

Rename classes from Grxxx to HbGrxxx

上级 a5a72e00
......@@ -46,10 +46,10 @@ typedef struct _featureSetting {
int value;
} featureSetting;
class GrBufferTextSrc : public gr::ITextSource
class HbGrBufferTextSrc : public gr::ITextSource
{
public:
GrBufferTextSrc(hb_buffer_t *buff, hb_feature_t *feats, unsigned int num_features)
HbGrBufferTextSrc(hb_buffer_t *buff, hb_feature_t *feats, unsigned int num_features)
{
hb_feature_t *aFeat = feats;
featureSetting *aNewFeat;
......@@ -64,7 +64,7 @@ public:
aNewFeat->value = aFeat->value;
}
};
~GrBufferTextSrc() { hb_buffer_destroy(buffer); delete[] features; };
~HbGrBufferTextSrc() { hb_buffer_destroy(buffer); delete[] features; };
virtual gr::UtfType utfEncodingForm() { return gr::kutf32; };
virtual size_t getLength() { return buffer->len; };
virtual size_t fetch(gr::toffset ichMin, size_t cch, gr::utf32 * prgchBuffer)
......@@ -120,12 +120,12 @@ private:
unsigned int nFeatures;
};
class GrHbFont : public gr::Font
class HbGrFont : public gr::Font
{
public:
GrHbFont(hb_font_t *font, hb_face_t *face) : gr::Font()
HbGrFont(hb_font_t *font, hb_face_t *face) : gr::Font()
{ m_font = hb_font_reference(font); m_face = hb_face_reference(face); initfont(); };
~GrHbFont()
~HbGrFont()
{
std::map<hb_tag_t,hb_blob_t *>::iterator p = m_blobs.begin();
while (p != m_blobs.end())
......@@ -133,7 +133,7 @@ public:
hb_font_destroy(m_font);
hb_face_destroy(m_face);
};
GrHbFont (const GrHbFont &font) : gr::Font(font)
HbGrFont (const HbGrFont &font) : gr::Font(font)
{
*this = font;
m_blobs = std::map<hb_tag_t, hb_blob_t *>(font.m_blobs);
......@@ -142,7 +142,7 @@ public:
hb_font_reference(m_font);
hb_face_reference(m_face);
};
virtual GrHbFont *copyThis() { return new GrHbFont(*this); };
virtual HbGrFont *copyThis() { return new HbGrFont(*this); };
virtual bool bold() { return m_bold; };
virtual bool italic() { return m_italic; };
virtual float ascent() { float asc; getFontMetrics(&asc, NULL, NULL); return asc; };
......@@ -210,7 +210,7 @@ private:
std::map<hb_tag_t, hb_blob_t *> m_blobs;
};
void GrHbFont::initfont()
void HbGrFont::initfont()
{
const void *pOS2 = getTable(gr::kttiOs2, NULL);
const void *pHead = getTable(gr::kttiHead, NULL);
......@@ -228,10 +228,10 @@ hb_graphite_shape (hb_font_t *font,
unsigned int num_features)
{
/* create text source */
GrBufferTextSrc textSrc(buffer, features, num_features);
HbGrBufferTextSrc textSrc(buffer, features, num_features);
/* create grfont */
GrHbFont grfont(font, face);
HbGrFont grfont(font, face);
/* create segment */
int *firsts;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册