6 #define FONTLIST FontList::instance()
11 * The global list of fonts. This is implemented as a singleton.
12 * Use FontList::instance() to get a pointer to the object.
14 * @author James Hammons
15 * @author Andrew Mustun
24 * @return Instance to the unique font list.
26 static FontList * instance();
33 virtual void removeFont(Font * font);
34 Font * requestFont(const QString & name);
38 friend std::ostream & operator<<(std::ostream & os, FontList & l);
41 static FontList * uniqueInstance;
44 //! fonts in the graphic
46 QListIterator<Font *> fontIterator;
49 #endif // __FONTLIST_H__