From 0375bdd2027767ee7bebef1ed289b33dc64f430e Mon Sep 17 00:00:00 2001 From: Martin Hosken Date: Fri, 21 May 2010 15:01:37 +0100 Subject: [PATCH] Rename classes from Grxxx to HbGrxxx --- src/hb-graphite.cc | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/hb-graphite.cc b/src/hb-graphite.cc index 1b887f4..168c73d 100644 --- a/src/hb-graphite.cc +++ b/src/hb-graphite.cc @@ -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::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(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 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; -- 2.7.4