123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359 |
- /****************************************************************************
- **
- ** Copyright (C) 2016 The Qt Company Ltd.
- ** Contact: https://www.qt.io/licensing/
- **
- ** This file is part of the QtGui module of the Qt Toolkit.
- **
- ** $QT_BEGIN_LICENSE:LGPL$
- ** Commercial License Usage
- ** Licensees holding valid commercial Qt licenses may use this file in
- ** accordance with the commercial license agreement provided with the
- ** Software or, alternatively, in accordance with the terms contained in
- ** a written agreement between you and The Qt Company. For licensing terms
- ** and conditions see https://www.qt.io/terms-conditions. For further
- ** information use the contact form at https://www.qt.io/contact-us.
- **
- ** GNU Lesser General Public License Usage
- ** Alternatively, this file may be used under the terms of the GNU Lesser
- ** General Public License version 3 as published by the Free Software
- ** Foundation and appearing in the file LICENSE.LGPL3 included in the
- ** packaging of this file. Please review the following information to
- ** ensure the GNU Lesser General Public License version 3 requirements
- ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
- **
- ** GNU General Public License Usage
- ** Alternatively, this file may be used under the terms of the GNU
- ** General Public License version 2.0 or (at your option) the GNU General
- ** Public license version 3 or any later version approved by the KDE Free
- ** Qt Foundation. The licenses are as published by the Free Software
- ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
- ** included in the packaging of this file. Please review the following
- ** information to ensure the GNU General Public License requirements will
- ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
- ** https://www.gnu.org/licenses/gpl-3.0.html.
- **
- ** $QT_END_LICENSE$
- **
- ****************************************************************************/
- #ifndef QFONT_H
- #define QFONT_H
- #include <QtGui/qwindowdefs.h>
- #include <QtCore/qstring.h>
- #include <QtCore/qsharedpointer.h>
- QT_BEGIN_NAMESPACE
- class QFontPrivate; /* don't touch */
- class QStringList;
- class QVariant;
- class Q_GUI_EXPORT QFont
- {
- Q_GADGET
- public:
- enum StyleHint {
- Helvetica, SansSerif = Helvetica,
- Times, Serif = Times,
- Courier, TypeWriter = Courier,
- OldEnglish, Decorative = OldEnglish,
- System,
- AnyStyle,
- Cursive,
- Monospace,
- Fantasy
- };
- enum StyleStrategy {
- PreferDefault = 0x0001,
- PreferBitmap = 0x0002,
- PreferDevice = 0x0004,
- PreferOutline = 0x0008,
- ForceOutline = 0x0010,
- PreferMatch = 0x0020,
- PreferQuality = 0x0040,
- PreferAntialias = 0x0080,
- NoAntialias = 0x0100,
- OpenGLCompatible = 0x0200,
- ForceIntegerMetrics = 0x0400,
- NoSubpixelAntialias = 0x0800,
- NoFontMerging = 0x8000
- };
- Q_ENUM(StyleStrategy)
- enum HintingPreference {
- PreferDefaultHinting = 0,
- PreferNoHinting = 1,
- PreferVerticalHinting = 2,
- PreferFullHinting = 3
- };
- // Mapping OpenType weight value.
- enum Weight {
- Thin = 0, // 100
- ExtraLight = 12, // 200
- Light = 25, // 300
- Normal = 50, // 400
- Medium = 57, // 500
- DemiBold = 63, // 600
- Bold = 75, // 700
- ExtraBold = 81, // 800
- Black = 87 // 900
- };
- enum Style {
- StyleNormal,
- StyleItalic,
- StyleOblique
- };
- enum Stretch {
- UltraCondensed = 50,
- ExtraCondensed = 62,
- Condensed = 75,
- SemiCondensed = 87,
- Unstretched = 100,
- SemiExpanded = 112,
- Expanded = 125,
- ExtraExpanded = 150,
- UltraExpanded = 200
- };
- enum Capitalization {
- MixedCase,
- AllUppercase,
- AllLowercase,
- SmallCaps,
- Capitalize
- };
- enum SpacingType {
- PercentageSpacing,
- AbsoluteSpacing
- };
- enum ResolveProperties {
- FamilyResolved = 0x0001,
- SizeResolved = 0x0002,
- StyleHintResolved = 0x0004,
- StyleStrategyResolved = 0x0008,
- WeightResolved = 0x0010,
- StyleResolved = 0x0020,
- UnderlineResolved = 0x0040,
- OverlineResolved = 0x0080,
- StrikeOutResolved = 0x0100,
- FixedPitchResolved = 0x0200,
- StretchResolved = 0x0400,
- KerningResolved = 0x0800,
- CapitalizationResolved = 0x1000,
- LetterSpacingResolved = 0x2000,
- WordSpacingResolved = 0x4000,
- HintingPreferenceResolved = 0x8000,
- StyleNameResolved = 0x10000,
- AllPropertiesResolved = 0x1ffff
- };
- QFont();
- QFont(const QString &family, int pointSize = -1, int weight = -1, bool italic = false);
- QFont(const QFont &, QPaintDevice *pd);
- QFont(const QFont &);
- ~QFont();
- void swap(QFont &other)
- { qSwap(d, other.d); qSwap(resolve_mask, other.resolve_mask); }
- QString family() const;
- void setFamily(const QString &);
- QString styleName() const;
- void setStyleName(const QString &);
- int pointSize() const;
- void setPointSize(int);
- qreal pointSizeF() const;
- void setPointSizeF(qreal);
- int pixelSize() const;
- void setPixelSize(int);
- int weight() const;
- void setWeight(int);
- inline bool bold() const;
- inline void setBold(bool);
- void setStyle(Style style);
- Style style() const;
- inline bool italic() const;
- inline void setItalic(bool b);
- bool underline() const;
- void setUnderline(bool);
- bool overline() const;
- void setOverline(bool);
- bool strikeOut() const;
- void setStrikeOut(bool);
- bool fixedPitch() const;
- void setFixedPitch(bool);
- bool kerning() const;
- void setKerning(bool);
- StyleHint styleHint() const;
- StyleStrategy styleStrategy() const;
- void setStyleHint(StyleHint, StyleStrategy = PreferDefault);
- void setStyleStrategy(StyleStrategy s);
- int stretch() const;
- void setStretch(int);
- qreal letterSpacing() const;
- SpacingType letterSpacingType() const;
- void setLetterSpacing(SpacingType type, qreal spacing);
- qreal wordSpacing() const;
- void setWordSpacing(qreal spacing);
- void setCapitalization(Capitalization);
- Capitalization capitalization() const;
- void setHintingPreference(HintingPreference hintingPreference);
- HintingPreference hintingPreference() const;
- #if QT_DEPRECATED_SINCE(5, 5)
- bool rawMode() const;
- void setRawMode(bool);
- #endif
- // dupicated from QFontInfo
- bool exactMatch() const;
- QFont &operator=(const QFont &);
- bool operator==(const QFont &) const;
- bool operator!=(const QFont &) const;
- bool operator<(const QFont &) const;
- operator QVariant() const;
- bool isCopyOf(const QFont &) const;
- #ifdef Q_COMPILER_RVALUE_REFS
- inline QFont &operator=(QFont &&other) Q_DECL_NOEXCEPT
- { qSwap(d, other.d); qSwap(resolve_mask, other.resolve_mask); return *this; }
- #endif
- #if QT_DEPRECATED_SINCE(5, 3)
- // needed for X11
- QT_DEPRECATED void setRawName(const QString &);
- QT_DEPRECATED QString rawName() const;
- #endif
- QString key() const;
- QString toString() const;
- bool fromString(const QString &);
- static QString substitute(const QString &);
- static QStringList substitutes(const QString &);
- static QStringList substitutions();
- static void insertSubstitution(const QString&, const QString &);
- static void insertSubstitutions(const QString&, const QStringList &);
- static void removeSubstitutions(const QString &);
- #if QT_DEPRECATED_SINCE(5, 0)
- static QT_DEPRECATED void removeSubstitution(const QString &family) { removeSubstitutions(family); }
- #endif
- static void initialize();
- static void cleanup();
- static void cacheStatistics();
- QString defaultFamily() const;
- QString lastResortFamily() const;
- QString lastResortFont() const;
- QFont resolve(const QFont &) const;
- inline uint resolve() const { return resolve_mask; }
- inline void resolve(uint mask) { resolve_mask = mask; }
- private:
- explicit QFont(QFontPrivate *);
- void detach();
- friend class QFontPrivate;
- friend class QFontDialogPrivate;
- friend class QFontMetrics;
- friend class QFontMetricsF;
- friend class QFontInfo;
- friend class QPainter;
- friend class QPainterPrivate;
- friend class QApplication;
- friend class QWidget;
- friend class QWidgetPrivate;
- friend class QTextLayout;
- friend class QTextEngine;
- friend class QStackTextEngine;
- friend class QTextLine;
- friend struct QScriptLine;
- friend class QOpenGLContext;
- friend class QWin32PaintEngine;
- friend class QAlphaPaintEngine;
- friend class QPainterPath;
- friend class QTextItemInt;
- friend class QPicturePaintEngine;
- friend class QPainterReplayer;
- friend class QPaintBufferEngine;
- friend class QCommandLinkButtonPrivate;
- friend class QFontEngine;
- #ifndef QT_NO_DATASTREAM
- friend Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QFont &);
- friend Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QFont &);
- #endif
- QExplicitlySharedDataPointer<QFontPrivate> d;
- uint resolve_mask;
- };
- Q_DECLARE_SHARED(QFont)
- Q_GUI_EXPORT uint qHash(const QFont &font, uint seed = 0) Q_DECL_NOTHROW;
- inline bool QFont::bold() const
- { return weight() > Medium; }
- inline void QFont::setBold(bool enable)
- { setWeight(enable ? Bold : Normal); }
- inline bool QFont::italic() const
- {
- return (style() != StyleNormal);
- }
- inline void QFont::setItalic(bool b) {
- setStyle(b ? StyleItalic : StyleNormal);
- }
- /*****************************************************************************
- QFont stream functions
- *****************************************************************************/
- #ifndef QT_NO_DATASTREAM
- Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QFont &);
- Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QFont &);
- #endif
- #ifndef QT_NO_DEBUG_STREAM
- Q_GUI_EXPORT QDebug operator<<(QDebug, const QFont &);
- #endif
- QT_END_NAMESPACE
- #endif // QFONT_H
|