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

系统编程

开发平台:

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.
  23. **
  24. ** Qt for Windows(R) Licensees
  25. ** As a special exception, Nokia, as the sole copyright holder for Qt
  26. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  27. ** right for the Qt/Eclipse Integration to link to functionality
  28. ** provided by Qt Designer and its related libraries.
  29. **
  30. ** If you are unsure which license is appropriate for your use, please
  31. ** contact the sales department at qt-sales@nokia.com.
  32. **
  33. ****************************************************************************/
  34. #ifndef QABSTRACTFONTENGINE_QWS_H
  35. #define QABSTRACTFONTENGINE_QWS_H
  36. #include <QtCore/qobject.h>
  37. #include <QtCore/qhash.h>
  38. #include <QtCore/qvariant.h>
  39. #include <QtCore/qfactoryinterface.h>
  40. #include <QtGui/qpaintengine.h>
  41. #include <QtGui/qfontdatabase.h>
  42. QT_BEGIN_HEADER
  43. QT_BEGIN_NAMESPACE
  44. QT_MODULE(Gui)
  45. class QFontEngineInfoPrivate;
  46. class Q_GUI_EXPORT QFontEngineInfo
  47. {
  48. public:
  49.     QDOC_PROPERTY(QString family READ family WRITE setFamily)
  50.     QDOC_PROPERTY(qreal pixelSize READ pixelSize WRITE setPixelSize)
  51.     QDOC_PROPERTY(int weight READ weight WRITE setWeight)
  52.     QDOC_PROPERTY(QFont::Style style READ style WRITE setStyle)
  53.     QDOC_PROPERTY(QList<QFontDatabase::WritingSystem> writingSystems READ writingSystems WRITE setWritingSystems)
  54.     QFontEngineInfo();
  55.     explicit QFontEngineInfo(const QString &family);
  56.     QFontEngineInfo(const QFontEngineInfo &other);
  57.     QFontEngineInfo &operator=(const QFontEngineInfo &other);
  58.     ~QFontEngineInfo();
  59.     void setFamily(const QString &name);
  60.     QString family() const;
  61.     void setPixelSize(qreal size);
  62.     qreal pixelSize() const;
  63.     void setWeight(int weight);
  64.     int weight() const;
  65.     void setStyle(QFont::Style style);
  66.     QFont::Style style() const;
  67.     QList<QFontDatabase::WritingSystem> writingSystems() const;
  68.     void setWritingSystems(const QList<QFontDatabase::WritingSystem> &writingSystems);
  69. private:
  70.     QFontEngineInfoPrivate *d;
  71. };
  72. class QAbstractFontEngine;
  73. struct Q_GUI_EXPORT QFontEngineFactoryInterface : public QFactoryInterface
  74. {
  75.      virtual QAbstractFontEngine *create(const QFontEngineInfo &info) = 0;
  76.      virtual QList<QFontEngineInfo> availableFontEngines() const = 0;
  77. };
  78. #define QFontEngineFactoryInterface_iid "com.trolltech.Qt.QFontEngineFactoryInterface"
  79. Q_DECLARE_INTERFACE(QFontEngineFactoryInterface, QFontEngineFactoryInterface_iid)
  80. class QFontEnginePluginPrivate;
  81. class Q_GUI_EXPORT QFontEnginePlugin : public QObject, public QFontEngineFactoryInterface
  82. {
  83.     Q_OBJECT
  84.     Q_INTERFACES(QFontEngineFactoryInterface:QFactoryInterface)
  85. public:
  86.     QFontEnginePlugin(const QString &foundry, QObject *parent = 0);
  87.     ~QFontEnginePlugin();
  88.     virtual QStringList keys() const;
  89.     virtual QAbstractFontEngine *create(const QFontEngineInfo &info) = 0;
  90.     virtual QList<QFontEngineInfo> availableFontEngines() const = 0;
  91. private:
  92.     Q_DECLARE_PRIVATE(QFontEnginePlugin)
  93.     Q_DISABLE_COPY(QFontEnginePlugin)
  94. };
  95. class QAbstractFontEnginePrivate;
  96. class Q_GUI_EXPORT QAbstractFontEngine : public QObject
  97. {
  98.     Q_OBJECT
  99. public:
  100.     enum Capability {
  101.         CanOutlineGlyphs = 1,
  102.         CanRenderGlyphs_Mono = 2,
  103.         CanRenderGlyphs_Gray = 4,
  104.         CanRenderGlyphs = CanRenderGlyphs_Mono | CanRenderGlyphs_Gray
  105.     };
  106.     Q_DECLARE_FLAGS(Capabilities, Capability)
  107.     explicit QAbstractFontEngine(QObject *parent = 0);
  108.     ~QAbstractFontEngine();
  109.     typedef int Fixed; // 26.6
  110.     struct FixedPoint
  111.     {
  112.         Fixed x;
  113.         Fixed y;
  114.     };
  115.     struct GlyphMetrics
  116.     {
  117.         inline GlyphMetrics()
  118.             : x(0), y(0), width(0), height(0),
  119.               advance(0) {}
  120.         Fixed x;
  121.         Fixed y;
  122.         Fixed width;
  123.         Fixed height;
  124.         Fixed advance;
  125.     };
  126.     enum FontProperty {
  127.         Ascent,
  128.         Descent,
  129.         Leading,
  130.         XHeight,
  131.         AverageCharWidth,
  132.         LineThickness,
  133.         UnderlinePosition,
  134.         MaxCharWidth,
  135.         MinLeftBearing,
  136.         MinRightBearing,
  137.         GlyphCount,
  138.         // hints
  139.         CacheGlyphsHint,
  140.         OutlineGlyphsHint
  141.     };
  142.     // keep in sync with QTextEngine::ShaperFlag!!
  143.     enum TextShapingFlag {
  144.         RightToLeft         = 0x0001,
  145.         ReturnDesignMetrics = 0x0002
  146.     };
  147.     Q_DECLARE_FLAGS(TextShapingFlags, TextShapingFlag)
  148.     virtual Capabilities capabilities() const = 0;
  149.     virtual QVariant fontProperty(FontProperty property) const = 0;
  150.     virtual bool convertStringToGlyphIndices(const QChar *string, int length, uint *glyphs, int *numGlyphs, TextShapingFlags flags) const = 0;
  151.     virtual void getGlyphAdvances(const uint *glyphs, int numGlyphs, Fixed *advances, TextShapingFlags flags) const = 0;
  152.     virtual GlyphMetrics glyphMetrics(uint glyph) const = 0;
  153.     virtual bool renderGlyph(uint glyph, int depth, int bytesPerLine, int height, uchar *buffer);
  154.     virtual void addGlyphOutlinesToPath(uint *glyphs, int numGlyphs, FixedPoint *positions, QPainterPath *path);
  155.     /*
  156.     enum Extension {
  157.         GetTrueTypeTable
  158.     };
  159.     virtual bool supportsExtension(Extension extension) const;
  160.     virtual QVariant extension(Extension extension, const QVariant &argument = QVariant());
  161.     */
  162. private:
  163.     Q_DECLARE_PRIVATE(QAbstractFontEngine)
  164.     Q_DISABLE_COPY(QAbstractFontEngine)
  165. };
  166. Q_DECLARE_OPERATORS_FOR_FLAGS(QAbstractFontEngine::Capabilities)
  167. Q_DECLARE_OPERATORS_FOR_FLAGS(QAbstractFontEngine::TextShapingFlags)
  168. QT_END_NAMESPACE
  169. QT_END_HEADER
  170. #endif