QCAD Application Framework
CAD Application Development and Automation.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
RFontList.h
Go to the documentation of this file.
1 #ifndef RFONTLIST_H
2 #define RFONTLIST_H
3 
4 #include "RFont.h"
5 #include "RResourceList.h"
6 
13 class RFontList {
14 public:
15  static void init();
16  static void uninit();
17 
18  static QStringList getNames();
19 
20  static RFont* get(const QString& resName) {
21  return res.get(resName);
22  }
23 
24  static bool isCadFont(const QString& fontName);
25 
26 private:
28 };
29 
33 
34 #endif