X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fbase%2Frs_font.h;h=61eee2299b0a580c2a543654a9a9a17f6ae642fb;hb=20cce16e98fc9b052c5862efa6394a285971e846;hp=515979a634145a66081e38d594e8e2edd9613d45;hpb=16ce54abf01ca3032e42a5bb11a4afcf9014dcca;p=architektonas diff --git a/src/base/rs_font.h b/src/base/rs_font.h index 515979a..61eee22 100644 --- a/src/base/rs_font.h +++ b/src/base/rs_font.h @@ -6,7 +6,7 @@ #include "rs_blocklist.h" /** - * Class for representing a font. This is implemented as a RS_Graphic + * Class for representing a font. This is implemented as a Drawing * with a name (the font name) and several blocks, one for each letter * in the font. * @@ -18,7 +18,6 @@ class RS_Font public: RS_Font(const QString & name, bool owner = true); - //RS_Font(const char* name); QString getFileName() const; QString getEncoding() const; @@ -37,6 +36,12 @@ class RS_Font friend std::ostream & operator<<(std::ostream & os, const RS_Font & l); +#if 1 + private: + void ParseIdentifier(QTextStream &, QString); + void ParseCharacter(QTextStream &, QString); +#endif + private: //! block list (letters) RS_BlockList letterList;