qfont.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QFONT_H
  40. #define QFONT_H
  41. #include <QtGui/qwindowdefs.h>
  42. #include <QtCore/qstring.h>
  43. #include <QtCore/qsharedpointer.h>
  44. QT_BEGIN_NAMESPACE
  45. class QFontPrivate; /* don't touch */
  46. class QStringList;
  47. class QVariant;
  48. class Q_GUI_EXPORT QFont
  49. {
  50. Q_GADGET
  51. public:
  52. enum StyleHint {
  53. Helvetica, SansSerif = Helvetica,
  54. Times, Serif = Times,
  55. Courier, TypeWriter = Courier,
  56. OldEnglish, Decorative = OldEnglish,
  57. System,
  58. AnyStyle,
  59. Cursive,
  60. Monospace,
  61. Fantasy
  62. };
  63. enum StyleStrategy {
  64. PreferDefault = 0x0001,
  65. PreferBitmap = 0x0002,
  66. PreferDevice = 0x0004,
  67. PreferOutline = 0x0008,
  68. ForceOutline = 0x0010,
  69. PreferMatch = 0x0020,
  70. PreferQuality = 0x0040,
  71. PreferAntialias = 0x0080,
  72. NoAntialias = 0x0100,
  73. OpenGLCompatible = 0x0200,
  74. ForceIntegerMetrics = 0x0400,
  75. NoSubpixelAntialias = 0x0800,
  76. NoFontMerging = 0x8000
  77. };
  78. Q_ENUM(StyleStrategy)
  79. enum HintingPreference {
  80. PreferDefaultHinting = 0,
  81. PreferNoHinting = 1,
  82. PreferVerticalHinting = 2,
  83. PreferFullHinting = 3
  84. };
  85. // Mapping OpenType weight value.
  86. enum Weight {
  87. Thin = 0, // 100
  88. ExtraLight = 12, // 200
  89. Light = 25, // 300
  90. Normal = 50, // 400
  91. Medium = 57, // 500
  92. DemiBold = 63, // 600
  93. Bold = 75, // 700
  94. ExtraBold = 81, // 800
  95. Black = 87 // 900
  96. };
  97. enum Style {
  98. StyleNormal,
  99. StyleItalic,
  100. StyleOblique
  101. };
  102. enum Stretch {
  103. UltraCondensed = 50,
  104. ExtraCondensed = 62,
  105. Condensed = 75,
  106. SemiCondensed = 87,
  107. Unstretched = 100,
  108. SemiExpanded = 112,
  109. Expanded = 125,
  110. ExtraExpanded = 150,
  111. UltraExpanded = 200
  112. };
  113. enum Capitalization {
  114. MixedCase,
  115. AllUppercase,
  116. AllLowercase,
  117. SmallCaps,
  118. Capitalize
  119. };
  120. enum SpacingType {
  121. PercentageSpacing,
  122. AbsoluteSpacing
  123. };
  124. enum ResolveProperties {
  125. FamilyResolved = 0x0001,
  126. SizeResolved = 0x0002,
  127. StyleHintResolved = 0x0004,
  128. StyleStrategyResolved = 0x0008,
  129. WeightResolved = 0x0010,
  130. StyleResolved = 0x0020,
  131. UnderlineResolved = 0x0040,
  132. OverlineResolved = 0x0080,
  133. StrikeOutResolved = 0x0100,
  134. FixedPitchResolved = 0x0200,
  135. StretchResolved = 0x0400,
  136. KerningResolved = 0x0800,
  137. CapitalizationResolved = 0x1000,
  138. LetterSpacingResolved = 0x2000,
  139. WordSpacingResolved = 0x4000,
  140. HintingPreferenceResolved = 0x8000,
  141. StyleNameResolved = 0x10000,
  142. AllPropertiesResolved = 0x1ffff
  143. };
  144. QFont();
  145. QFont(const QString &family, int pointSize = -1, int weight = -1, bool italic = false);
  146. QFont(const QFont &, QPaintDevice *pd);
  147. QFont(const QFont &);
  148. ~QFont();
  149. void swap(QFont &other)
  150. { qSwap(d, other.d); qSwap(resolve_mask, other.resolve_mask); }
  151. QString family() const;
  152. void setFamily(const QString &);
  153. QString styleName() const;
  154. void setStyleName(const QString &);
  155. int pointSize() const;
  156. void setPointSize(int);
  157. qreal pointSizeF() const;
  158. void setPointSizeF(qreal);
  159. int pixelSize() const;
  160. void setPixelSize(int);
  161. int weight() const;
  162. void setWeight(int);
  163. inline bool bold() const;
  164. inline void setBold(bool);
  165. void setStyle(Style style);
  166. Style style() const;
  167. inline bool italic() const;
  168. inline void setItalic(bool b);
  169. bool underline() const;
  170. void setUnderline(bool);
  171. bool overline() const;
  172. void setOverline(bool);
  173. bool strikeOut() const;
  174. void setStrikeOut(bool);
  175. bool fixedPitch() const;
  176. void setFixedPitch(bool);
  177. bool kerning() const;
  178. void setKerning(bool);
  179. StyleHint styleHint() const;
  180. StyleStrategy styleStrategy() const;
  181. void setStyleHint(StyleHint, StyleStrategy = PreferDefault);
  182. void setStyleStrategy(StyleStrategy s);
  183. int stretch() const;
  184. void setStretch(int);
  185. qreal letterSpacing() const;
  186. SpacingType letterSpacingType() const;
  187. void setLetterSpacing(SpacingType type, qreal spacing);
  188. qreal wordSpacing() const;
  189. void setWordSpacing(qreal spacing);
  190. void setCapitalization(Capitalization);
  191. Capitalization capitalization() const;
  192. void setHintingPreference(HintingPreference hintingPreference);
  193. HintingPreference hintingPreference() const;
  194. #if QT_DEPRECATED_SINCE(5, 5)
  195. bool rawMode() const;
  196. void setRawMode(bool);
  197. #endif
  198. // dupicated from QFontInfo
  199. bool exactMatch() const;
  200. QFont &operator=(const QFont &);
  201. bool operator==(const QFont &) const;
  202. bool operator!=(const QFont &) const;
  203. bool operator<(const QFont &) const;
  204. operator QVariant() const;
  205. bool isCopyOf(const QFont &) const;
  206. #ifdef Q_COMPILER_RVALUE_REFS
  207. inline QFont &operator=(QFont &&other) Q_DECL_NOEXCEPT
  208. { qSwap(d, other.d); qSwap(resolve_mask, other.resolve_mask); return *this; }
  209. #endif
  210. #if QT_DEPRECATED_SINCE(5, 3)
  211. // needed for X11
  212. QT_DEPRECATED void setRawName(const QString &);
  213. QT_DEPRECATED QString rawName() const;
  214. #endif
  215. QString key() const;
  216. QString toString() const;
  217. bool fromString(const QString &);
  218. static QString substitute(const QString &);
  219. static QStringList substitutes(const QString &);
  220. static QStringList substitutions();
  221. static void insertSubstitution(const QString&, const QString &);
  222. static void insertSubstitutions(const QString&, const QStringList &);
  223. static void removeSubstitutions(const QString &);
  224. #if QT_DEPRECATED_SINCE(5, 0)
  225. static QT_DEPRECATED void removeSubstitution(const QString &family) { removeSubstitutions(family); }
  226. #endif
  227. static void initialize();
  228. static void cleanup();
  229. static void cacheStatistics();
  230. QString defaultFamily() const;
  231. QString lastResortFamily() const;
  232. QString lastResortFont() const;
  233. QFont resolve(const QFont &) const;
  234. inline uint resolve() const { return resolve_mask; }
  235. inline void resolve(uint mask) { resolve_mask = mask; }
  236. private:
  237. explicit QFont(QFontPrivate *);
  238. void detach();
  239. friend class QFontPrivate;
  240. friend class QFontDialogPrivate;
  241. friend class QFontMetrics;
  242. friend class QFontMetricsF;
  243. friend class QFontInfo;
  244. friend class QPainter;
  245. friend class QPainterPrivate;
  246. friend class QApplication;
  247. friend class QWidget;
  248. friend class QWidgetPrivate;
  249. friend class QTextLayout;
  250. friend class QTextEngine;
  251. friend class QStackTextEngine;
  252. friend class QTextLine;
  253. friend struct QScriptLine;
  254. friend class QOpenGLContext;
  255. friend class QWin32PaintEngine;
  256. friend class QAlphaPaintEngine;
  257. friend class QPainterPath;
  258. friend class QTextItemInt;
  259. friend class QPicturePaintEngine;
  260. friend class QPainterReplayer;
  261. friend class QPaintBufferEngine;
  262. friend class QCommandLinkButtonPrivate;
  263. friend class QFontEngine;
  264. #ifndef QT_NO_DATASTREAM
  265. friend Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QFont &);
  266. friend Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QFont &);
  267. #endif
  268. QExplicitlySharedDataPointer<QFontPrivate> d;
  269. uint resolve_mask;
  270. };
  271. Q_DECLARE_SHARED(QFont)
  272. Q_GUI_EXPORT uint qHash(const QFont &font, uint seed = 0) Q_DECL_NOTHROW;
  273. inline bool QFont::bold() const
  274. { return weight() > Medium; }
  275. inline void QFont::setBold(bool enable)
  276. { setWeight(enable ? Bold : Normal); }
  277. inline bool QFont::italic() const
  278. {
  279. return (style() != StyleNormal);
  280. }
  281. inline void QFont::setItalic(bool b) {
  282. setStyle(b ? StyleItalic : StyleNormal);
  283. }
  284. /*****************************************************************************
  285. QFont stream functions
  286. *****************************************************************************/
  287. #ifndef QT_NO_DATASTREAM
  288. Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QFont &);
  289. Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QFont &);
  290. #endif
  291. #ifndef QT_NO_DEBUG_STREAM
  292. Q_GUI_EXPORT QDebug operator<<(QDebug, const QFont &);
  293. #endif
  294. QT_END_NAMESPACE
  295. #endif // QFONT_H