00001 #ifndef FONTACCESS_H 00002 #define FONTACCESS_H 00003 #include <qstring.h> 00004 #include "FTFont.h" 00005 00006 00007 #define FTFUGHETTA 0 00008 #define FTTIMES 1 00009 00012 class Fonte{ 00013 public: 00014 Fonte(QString file,QString name); 00015 QString filename; 00016 QString fontname; 00017 }; 00018 00022 class FontAccess{ 00023 static FTFont * fughetta; 00024 static FTFont * times; 00025 public: 00026 static FTFont * getFont(int i); 00027 }; 00028 #endif
1.3.6