qfontdatabase.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:5k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QFONTDATABASE_H
  38. #define QFONTDATABASE_H
  39. #include <QtGui/qwindowdefs.h>
  40. #include <QtCore/qstring.h>
  41. #include <QtGui/qfont.h>
  42. #ifdef QT3_SUPPORT
  43. #include <QtCore/qstringlist.h>
  44. #include <QtCore/qlist.h>
  45. #endif
  46. QT_BEGIN_HEADER
  47. QT_BEGIN_NAMESPACE
  48. QT_MODULE(Gui)
  49. class QStringList;
  50. template <class T> class QList;
  51. struct QFontDef;
  52. class QFontEngine;
  53. class QFontDatabasePrivate;
  54. class Q_GUI_EXPORT QFontDatabase
  55. {
  56.     Q_GADGET
  57.     Q_ENUMS(WritingSystem)
  58. public:
  59.     // do not re-order or delete entries from this enum without updating the
  60.     // QPF2 format and makeqpf!!
  61.     enum WritingSystem {
  62.         Any,
  63.         Latin,
  64.         Greek,
  65.         Cyrillic,
  66.         Armenian,
  67.         Hebrew,
  68.         Arabic,
  69.         Syriac,
  70.         Thaana,
  71.         Devanagari,
  72.         Bengali,
  73.         Gurmukhi,
  74.         Gujarati,
  75.         Oriya,
  76.         Tamil,
  77.         Telugu,
  78.         Kannada,
  79.         Malayalam,
  80.         Sinhala,
  81.         Thai,
  82.         Lao,
  83.         Tibetan,
  84.         Myanmar,
  85.         Georgian,
  86.         Khmer,
  87.         SimplifiedChinese,
  88.         TraditionalChinese,
  89.         Japanese,
  90.         Korean,
  91.         Vietnamese,
  92.         Symbol,
  93.         Other = Symbol,
  94.         Ogham,
  95.         Runic,
  96.         WritingSystemsCount
  97.     };
  98.     static QList<int> standardSizes();
  99.     QFontDatabase();
  100.     QList<WritingSystem> writingSystems() const;
  101.     QList<WritingSystem> writingSystems(const QString &family) const;
  102.     QStringList families(WritingSystem writingSystem = Any) const;
  103.     QStringList styles(const QString &family) const;
  104.     QList<int> pointSizes(const QString &family, const QString &style = QString());
  105.     QList<int> smoothSizes(const QString &family, const QString &style);
  106.     QString styleString(const QFont &font);
  107.     QString styleString(const QFontInfo &fontInfo);
  108.     QFont font(const QString &family, const QString &style, int pointSize) const;
  109.     bool isBitmapScalable(const QString &family, const QString &style = QString()) const;
  110.     bool isSmoothlyScalable(const QString &family, const QString &style = QString()) const;
  111.     bool isScalable(const QString &family, const QString &style = QString()) const;
  112.     bool isFixedPitch(const QString &family, const QString &style = QString()) const;
  113.     bool italic(const QString &family, const QString &style) const;
  114.     bool bold(const QString &family, const QString &style) const;
  115.     int weight(const QString &family, const QString &style) const;
  116.     static QString writingSystemName(WritingSystem writingSystem);
  117.     static QString writingSystemSample(WritingSystem writingSystem);
  118.     static int addApplicationFont(const QString &fileName);
  119.     static int addApplicationFontFromData(const QByteArray &fontData);
  120.     static QStringList applicationFontFamilies(int id);
  121.     static bool removeApplicationFont(int id);
  122.     static bool removeAllApplicationFonts();
  123.     static bool supportsThreadedFontRendering();
  124. private:
  125.     static void createDatabase();
  126.     static void parseFontName(const QString &name, QString &foundry, QString &family);
  127. #if defined(Q_WS_QWS)
  128.     static QFontEngine *findFont(int script, const QFontPrivate *fp, const QFontDef &request);
  129. #endif
  130.     static void load(const QFontPrivate *d, int script);
  131. #ifdef Q_WS_X11
  132.     static QFontEngine *loadXlfd(int screen, int script, const QFontDef &request, int force_encoding_id = -1);
  133. #endif
  134.     friend struct QFontDef;
  135.     friend class QFontPrivate;
  136.     friend class QFontDialog;
  137.     friend class QFontEngineMultiXLFD;
  138.     friend class QFontEngineMultiQWS;
  139.     QFontDatabasePrivate *d;
  140. };
  141. QT_END_NAMESPACE
  142. QT_END_HEADER
  143. #endif // QFONTDATABASE_H