qpalette.h 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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 QPALETTE_H
  40. #define QPALETTE_H
  41. #include <QtGui/qwindowdefs.h>
  42. #include <QtGui/qcolor.h>
  43. #include <QtGui/qbrush.h>
  44. QT_BEGIN_NAMESPACE
  45. class QPalettePrivate;
  46. class QVariant;
  47. class Q_GUI_EXPORT QPalette
  48. {
  49. Q_GADGET
  50. public:
  51. QPalette();
  52. QPalette(const QColor &button);
  53. QPalette(Qt::GlobalColor button);
  54. QPalette(const QColor &button, const QColor &window);
  55. QPalette(const QBrush &windowText, const QBrush &button, const QBrush &light,
  56. const QBrush &dark, const QBrush &mid, const QBrush &text,
  57. const QBrush &bright_text, const QBrush &base, const QBrush &window);
  58. QPalette(const QColor &windowText, const QColor &window, const QColor &light,
  59. const QColor &dark, const QColor &mid, const QColor &text, const QColor &base);
  60. QPalette(const QPalette &palette);
  61. ~QPalette();
  62. QPalette &operator=(const QPalette &palette);
  63. #ifdef Q_COMPILER_RVALUE_REFS
  64. QPalette(QPalette &&other) Q_DECL_NOTHROW
  65. : d(other.d), data(other.data)
  66. { other.d = Q_NULLPTR; }
  67. inline QPalette &operator=(QPalette &&other) Q_DECL_NOEXCEPT
  68. {
  69. for_faster_swapping_dont_use = other.for_faster_swapping_dont_use;
  70. qSwap(d, other.d); return *this;
  71. }
  72. #endif
  73. void swap(QPalette &other) Q_DECL_NOEXCEPT
  74. {
  75. qSwap(d, other.d);
  76. qSwap(for_faster_swapping_dont_use, other.for_faster_swapping_dont_use);
  77. }
  78. operator QVariant() const;
  79. // Do not change the order, the serialization format depends on it
  80. enum ColorGroup { Active, Disabled, Inactive, NColorGroups, Current, All, Normal = Active };
  81. Q_ENUM(ColorGroup)
  82. enum ColorRole { WindowText, Button, Light, Midlight, Dark, Mid,
  83. Text, BrightText, ButtonText, Base, Window, Shadow,
  84. Highlight, HighlightedText,
  85. Link, LinkVisited,
  86. AlternateBase,
  87. NoRole,
  88. ToolTipBase, ToolTipText,
  89. NColorRoles = ToolTipText + 1,
  90. Foreground = WindowText, Background = Window
  91. };
  92. Q_ENUM(ColorRole)
  93. inline ColorGroup currentColorGroup() const { return static_cast<ColorGroup>(data.current_group); }
  94. inline void setCurrentColorGroup(ColorGroup cg) { data.current_group = cg; }
  95. inline const QColor &color(ColorGroup cg, ColorRole cr) const
  96. { return brush(cg, cr).color(); }
  97. const QBrush &brush(ColorGroup cg, ColorRole cr) const;
  98. inline void setColor(ColorGroup cg, ColorRole cr, const QColor &color);
  99. inline void setColor(ColorRole cr, const QColor &color);
  100. inline void setBrush(ColorRole cr, const QBrush &brush);
  101. bool isBrushSet(ColorGroup cg, ColorRole cr) const;
  102. void setBrush(ColorGroup cg, ColorRole cr, const QBrush &brush);
  103. void setColorGroup(ColorGroup cr, const QBrush &windowText, const QBrush &button,
  104. const QBrush &light, const QBrush &dark, const QBrush &mid,
  105. const QBrush &text, const QBrush &bright_text, const QBrush &base,
  106. const QBrush &window);
  107. bool isEqual(ColorGroup cr1, ColorGroup cr2) const;
  108. inline const QColor &color(ColorRole cr) const { return color(Current, cr); }
  109. inline const QBrush &brush(ColorRole cr) const { return brush(Current, cr); }
  110. inline const QBrush &foreground() const { return brush(WindowText); }
  111. inline const QBrush &windowText() const { return brush(WindowText); }
  112. inline const QBrush &button() const { return brush(Button); }
  113. inline const QBrush &light() const { return brush(Light); }
  114. inline const QBrush &dark() const { return brush(Dark); }
  115. inline const QBrush &mid() const { return brush(Mid); }
  116. inline const QBrush &text() const { return brush(Text); }
  117. inline const QBrush &base() const { return brush(Base); }
  118. inline const QBrush &alternateBase() const { return brush(AlternateBase); }
  119. inline const QBrush &toolTipBase() const { return brush(ToolTipBase); }
  120. inline const QBrush &toolTipText() const { return brush(ToolTipText); }
  121. inline const QBrush &background() const { return brush(Window); }
  122. inline const QBrush &window() const { return brush(Window); }
  123. inline const QBrush &midlight() const { return brush(Midlight); }
  124. inline const QBrush &brightText() const { return brush(BrightText); }
  125. inline const QBrush &buttonText() const { return brush(ButtonText); }
  126. inline const QBrush &shadow() const { return brush(Shadow); }
  127. inline const QBrush &highlight() const { return brush(Highlight); }
  128. inline const QBrush &highlightedText() const { return brush(HighlightedText); }
  129. inline const QBrush &link() const { return brush(Link); }
  130. inline const QBrush &linkVisited() const { return brush(LinkVisited); }
  131. bool operator==(const QPalette &p) const;
  132. inline bool operator!=(const QPalette &p) const { return !(operator==(p)); }
  133. bool isCopyOf(const QPalette &p) const;
  134. #if QT_DEPRECATED_SINCE(5, 0)
  135. QT_DEPRECATED inline int serialNumber() const { return cacheKey() >> 32; }
  136. #endif
  137. qint64 cacheKey() const;
  138. QPalette resolve(const QPalette &) const;
  139. inline uint resolve() const { return data.resolve_mask; }
  140. inline void resolve(uint mask) { data.resolve_mask = mask; }
  141. private:
  142. void setColorGroup(ColorGroup cr, const QBrush &windowText, const QBrush &button,
  143. const QBrush &light, const QBrush &dark, const QBrush &mid,
  144. const QBrush &text, const QBrush &bright_text,
  145. const QBrush &base, const QBrush &alternate_base,
  146. const QBrush &window, const QBrush &midlight,
  147. const QBrush &button_text, const QBrush &shadow,
  148. const QBrush &highlight, const QBrush &highlighted_text,
  149. const QBrush &link, const QBrush &link_visited);
  150. void setColorGroup(ColorGroup cr, const QBrush &windowText, const QBrush &button,
  151. const QBrush &light, const QBrush &dark, const QBrush &mid,
  152. const QBrush &text, const QBrush &bright_text,
  153. const QBrush &base, const QBrush &alternate_base,
  154. const QBrush &window, const QBrush &midlight,
  155. const QBrush &button_text, const QBrush &shadow,
  156. const QBrush &highlight, const QBrush &highlighted_text,
  157. const QBrush &link, const QBrush &link_visited,
  158. const QBrush &toolTipBase, const QBrush &toolTipText);
  159. void init();
  160. void detach();
  161. QPalettePrivate *d;
  162. struct Data {
  163. uint current_group : 4;
  164. uint resolve_mask : 28;
  165. };
  166. union {
  167. Data data;
  168. quint32 for_faster_swapping_dont_use;
  169. };
  170. friend Q_GUI_EXPORT QDataStream &operator<<(QDataStream &s, const QPalette &p);
  171. };
  172. Q_DECLARE_SHARED(QPalette)
  173. inline void QPalette::setColor(ColorGroup acg, ColorRole acr,
  174. const QColor &acolor)
  175. { setBrush(acg, acr, QBrush(acolor)); }
  176. inline void QPalette::setColor(ColorRole acr, const QColor &acolor)
  177. { setColor(All, acr, acolor); }
  178. inline void QPalette::setBrush(ColorRole acr, const QBrush &abrush)
  179. { setBrush(All, acr, abrush); }
  180. /*****************************************************************************
  181. QPalette stream functions
  182. *****************************************************************************/
  183. #ifndef QT_NO_DATASTREAM
  184. Q_GUI_EXPORT QDataStream &operator<<(QDataStream &ds, const QPalette &p);
  185. Q_GUI_EXPORT QDataStream &operator>>(QDataStream &ds, QPalette &p);
  186. #endif // QT_NO_DATASTREAM
  187. #ifndef QT_NO_DEBUG_STREAM
  188. Q_GUI_EXPORT QDebug operator<<(QDebug, const QPalette &);
  189. #endif
  190. QT_END_NAMESPACE
  191. #endif // QPALETTE_H