KDecoration3

decoration.h
1/*
2 * SPDX-FileCopyrightText: 2014 Martin Gräßlin <mgraesslin@kde.org>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
5 */
6#pragma once
7
8#include "decorationshadow.h"
9#include <kdecoration3/kdecoration3_export.h>
10
11#include <QMarginsF>
12#include <QObject>
13#include <QRectF>
14#include <QSharedDataPointer>
15
16class QHoverEvent;
17class QMenu;
18class QMouseEvent;
19class QPainter;
20class QWheelEvent;
21
22/**
23 * @brief Framework for creating window decorations.
24 *
25 **/
26namespace KDecoration3
27{
28class DecorationPrivate;
29class DecoratedWindow;
32class DecorationStateData;
33class PositionerData;
34
35/**
36 * \brief Decoration state.
37 *
38 * The DecorationState type represents double bufferred state associated with a decoration.
39 *
40 * \note Sub-classes of DecorationState must override the clone() function.
41 */
42class KDECORATIONS3_EXPORT DecorationState
43{
44public:
45 DecorationState();
46 DecorationState(const DecorationState &other);
47 virtual ~DecorationState();
48
49 virtual std::shared_ptr<DecorationState> clone() const;
50
51 QMarginsF borders() const;
52 void setBorders(const QMarginsF &margins);
53
54private:
56};
57
58/**
59 * \brief Popup positioner.
60 *
61 * The Positioner type provides a way to position a popup relative to the decoration.
62 */
63class KDECORATIONS3_EXPORT Positioner
64{
65public:
66 Positioner();
67 Positioner(const Positioner &other);
68 ~Positioner();
69
70 /**
71 * Returns the anchor rectangle. The anchor rectangle is specified relative to the top left
72 * corner of the decoration.
73 */
74 QRectF anchorRect() const;
75
76 /**
77 * Sets the anchor rectangle to \a rect.
78 */
79 void setAnchorRect(const QRectF &rect);
80
81private:
83};
84
85/**
86 * @brief Base class for the Decoration.
87 *
88 * To provide a Decoration one needs to inherit from this class. The framework will instantiate
89 * an instance of the inherited class for each DecoratedWindow.
90 *
91 * The main tasks of the Decoration is to provide borders around the DecoratedWindow. For this
92 * the Deocration provides border sizes: those should be adjusted depending on the state of the
93 * DecoratedWindow. E.g. commonly a maximized DecoratedWindow does not have borders on the side,
94 * only the title bar.
95 *
96 * Whenever the visual representation of the Decoration changes the slot @link Decoration::update @endlink
97 * should be invoked to request a repaint. The framework will in return invoke the
98 * @link Decoration::paint @endlink method. This method needs to be implemented by inheriting
99 * classes.
100 *
101 * A Decoration commonly provides buttons for interaction. E.g. a close button to close the
102 * DecoratedWindow. For such actions the Decoration provides slots which should be connected to
103 * the clicked signals of the buttons. For convenience the framework provides the @link DecorationButton @endlink
104 * and the @link DecorationButtonGroup @endlink for easier layout. It is not required to use those,
105 * if one uses different ways to represent the actions one needs to filter the events accordingly.
106 *
107 * @see DecoratedWindow
108 * @see DecorationButton
109 * @see DecorationButtonGroup
110 **/
111class KDECORATIONS3_EXPORT Decoration : public QObject
112{
114 Q_PROPERTY(QMarginsF borders READ borders NOTIFY bordersChanged)
115 Q_PROPERTY(qreal borderLeft READ borderLeft NOTIFY bordersChanged)
116 Q_PROPERTY(qreal borderRight READ borderRight NOTIFY bordersChanged)
117 Q_PROPERTY(qreal borderTop READ borderTop NOTIFY bordersChanged)
118 Q_PROPERTY(qreal borderBottom READ borderBottom NOTIFY bordersChanged)
119 Q_PROPERTY(QMarginsF resizeOnlyBorders READ resizeOnlyBorders NOTIFY resizeOnlyBordersChanged)
120 Q_PROPERTY(qreal resizeOnlyBorderLeft READ resizeOnlyBorderLeft NOTIFY resizeOnlyBordersChanged)
121 Q_PROPERTY(qreal resizeOnlyBorderRight READ resizeOnlyBorderRight NOTIFY resizeOnlyBordersChanged)
122 Q_PROPERTY(qreal resizeOnlyBorderTop READ resizeOnlyBorderTop NOTIFY resizeOnlyBordersChanged)
123 Q_PROPERTY(qreal resizeOnlyBorderBottom READ resizeOnlyBorderBottom NOTIFY resizeOnlyBordersChanged)
124 /**
125 * This property denotes the part of the Decoration which is currently under the mouse pointer.
126 * It gets automatically updated whenever a QMouseEvent or QHoverEvent gets processed.
127 **/
128 Q_PROPERTY(Qt::WindowFrameSection sectionUnderMouse READ sectionUnderMouse NOTIFY sectionUnderMouseChanged)
129 /**
130 * The titleBar is the area inside the Decoration containing all controls (e.g. Buttons)
131 * and the caption. The titleBar is the main interaction area, while all other areas of the
132 * Decoration are normally used as resize areas.
133 **/
134 Q_PROPERTY(QRectF titleBar READ titleBar NOTIFY titleBarChanged)
135 /**
136 * Whether the Decoration is fully opaque. By default a Decoration is considered to
137 * use the alpha channel and this property has the value @c false. But for e.g. a maximized
138 * DecoratedWindow it is possible that the Decoration is fully opaque. In this case the
139 * Decoration should set this property to @c true.
140 **/
141 Q_PROPERTY(bool opaque READ isOpaque NOTIFY opaqueChanged)
142public:
143 ~Decoration() override;
144
145 /**
146 * The DecoratedWindow for this Decoration.
147 **/
148 DecoratedWindow *window() const;
149
150 QMarginsF borders() const;
151 qreal borderLeft() const;
152 qreal borderRight() const;
153 qreal borderTop() const;
154 qreal borderBottom() const;
155 QMarginsF resizeOnlyBorders() const;
156 qreal resizeOnlyBorderLeft() const;
157 qreal resizeOnlyBorderRight() const;
158 qreal resizeOnlyBorderTop() const;
159 qreal resizeOnlyBorderBottom() const;
160 Qt::WindowFrameSection sectionUnderMouse() const;
161 QRectF titleBar() const;
162 bool isOpaque() const;
163
164 /**
165 * DecorationShadow for this Decoration. It is recommended that multiple Decorations share
166 * the same DecorationShadow. E.g one DecorationShadow for all inactive Decorations and one
167 * for the active Decoration.
168 **/
169 std::shared_ptr<DecorationShadow> shadow() const;
170
171 /**
172 * The decoration's geometry in local coordinates.
173 *
174 * Basically the size of the DecoratedWindow combined with the borders.
175 **/
176 QRectF rect() const;
177 QSizeF size() const;
178
179 /**
180 * The decoration's blur region in local coordinates
181 */
182 QRegion blurRegion() const;
183
184 /**
185 * Invoked by the framework to set the Settings for this Decoration before
186 * init is invoked.
187 * @internal
188 **/
189 void setSettings(const std::shared_ptr<DecorationSettings> &settings);
190 /**
191 * @returns The DecorationSettings used for this Decoration.
192 **/
193 std::shared_ptr<DecorationSettings> settings() const;
194
195 /**
196 * Implement this method in inheriting classes to provide the rendering.
197 *
198 * The @p painter is set up to paint on an internal QPaintDevice. The painting is
199 * implicitly double buffered.
200 *
201 * @param painter The painter which needs to be used for rendering
202 * @param repaintArea The region which needs to be repainted.
203 **/
204 virtual void paint(QPainter *painter, const QRectF &repaintArea) = 0;
205
206 bool event(QEvent *event) override;
207
208 /**
209 * \internal
210 *
211 * Allocates the resources associated with the decoration, for example state containers.
212 *
213 * \note This method gets invoked by the compositor before init(), the decoration implementation
214 * must not call it.
215 */
216 void create();
217
218 /**
219 * \internal
220 *
221 * Make the specified \a state current.
222 *
223 * The decoration maintains a double-buffered state. If a double-buffered property needs
224 * to be changed, the next state will be updated and the nextStateChanged() signal will be
225 * emitted to notify the compositor about it.
226 *
227 * When the next state gets applied is subject to compositor policies. For example, the
228 * compositor may apply the new state immediately, or it can synchronize double-buffered
229 * decoration state with double-buffered toplevel state.
230 *
231 * \sa currentState(), nextState(), createState()
232 */
233 void apply(std::shared_ptr<DecorationState> state);
234
235 /**
236 * Returns the currently applied state.
237 *
238 * \sa apply()
239 */
240 std::shared_ptr<DecorationState> currentState() const;
241
242 /**
243 * Returns the next state, i.e. the state that the decoration implementation wants to be current.
244 *
245 * \sa apply()
246 */
247 std::shared_ptr<DecorationState> nextState() const;
248
249 /**
250 * Notifies the framework that the decoration state has changed. When the new state is applied
251 * is subject to compositor policies. For example, the compositor may re-configure the window
252 * and apply the new state when the window is repainted.
253 */
254 void setState(std::function<void(DecorationState *state)> callback);
255
256 /**
257 * Shows the given \a menu at the position specified by the \a positioner.
258 *
259 * If the menu is already shown, it will be re-positioned according to the \a positioner.
260 */
261 void popup(const Positioner &positioner, QMenu *menu);
262
263public Q_SLOTS:
264 void requestClose();
265 void requestToggleMaximization(Qt::MouseButtons buttons);
266 void requestMinimize();
267 void requestContextHelp();
268 void requestToggleOnAllDesktops();
269 void requestToggleShade();
270 void requestToggleKeepAbove();
271 void requestToggleKeepBelow();
272
273#if KDECORATIONS3_ENABLE_DEPRECATED_SINCE(5, 21)
274 /**
275 * @deprecated
276 * @see requestShowWindowMenu(const QRect &rect)
277 */
278 KDECORATIONS3_DEPRECATED_VERSION(5, 21, "Use Decoration::requestShowWindowMenu(QRect)")
280#endif
281
282 /**
283 * @param rect the location at which to show the window menu
284 */
285 void requestShowWindowMenu(const QRect &rect);
286 void requestShowToolTip(const QString &text);
287 void requestHideToolTip();
288
289 void showApplicationMenu(int actionId);
290 void requestShowApplicationMenu(const QRect &rect, int actionId);
291
292 void update(const QRectF &rect);
293 void update();
294
295 /**
296 * This method gets invoked from the framework once the Decoration is created and
297 * completely setup.
298 *
299 * An inheriting class should override this method and perform all initialization in
300 * this method instead of the constructor.
301 *
302 * @return true if initialization has been successful,
303 * false otherwise (for example, a QML component could not be loaded)
304 **/
305 virtual bool init() = 0;
306
308 void blurRegionChanged();
309 void bordersChanged();
310 void resizeOnlyBordersChanged();
311 void sectionUnderMouseChanged(Qt::WindowFrameSection);
312 void titleBarChanged();
313 void opaqueChanged(bool);
314 void shadowChanged(const std::shared_ptr<DecorationShadow> &shadow);
315 void damaged(const QRegion &region);
316 void currentStateChanged(std::shared_ptr<DecorationState> state);
317 void nextStateChanged(std::shared_ptr<DecorationState> state);
318
319protected:
320 /**
321 * Constructor for the Decoration.
322 *
323 * The @p args are used by the decoration framework to pass meta information
324 * to the Decoration. An inheriting class is supposed to pass the args to the
325 * parent class.
326 *
327 * @param parent The parent of the Decoration
328 * @param args Additional arguments passed in from the framework
329 **/
330 explicit Decoration(QObject *parent, const QVariantList &args);
331 void setBorders(const QMarginsF &borders);
332 void setResizeOnlyBorders(const QMarginsF &borders);
333 void setBlurRegion(const QRegion &region);
334 /**
335 * An implementation has to invoke this method whenever the area
336 * containing the controls and caption changes.
337 * @param rect The new geometry of the titleBar in Decoration coordinates
338 **/
339 void setTitleBar(const QRectF &rect);
340 void setOpaque(bool opaque);
341 void setShadow(const std::shared_ptr<DecorationShadow> &shadow);
342
343 virtual void hoverEnterEvent(QHoverEvent *event);
344 virtual void hoverLeaveEvent(QHoverEvent *event);
345 virtual void hoverMoveEvent(QHoverEvent *event);
346 virtual void mouseMoveEvent(QMouseEvent *event);
347 virtual void mousePressEvent(QMouseEvent *event);
348 virtual void mouseReleaseEvent(QMouseEvent *event);
349 virtual void wheelEvent(QWheelEvent *event);
350
351 /**
352 * Create a state container. The decoration implementation can override this method to attach
353 * its own properties to the decoration state.
354 *
355 * The default implementation simply creates an instance of the DecorationState type.
356 *
357 * \sa currentState(), nextState()
358 */
359 virtual std::shared_ptr<DecorationState> createState();
360
361private:
362 friend class DecorationButton;
363 class Private;
364 std::unique_ptr<Private> d;
365};
366
367} // namespace
368
369Q_DECLARE_METATYPE(KDecoration3::Decoration *)
The Client which gets decorated.
A button to be used in a Decoration.
Common settings for the Decoration.
A wrapper to define the shadow around the Decoration.
Base class for the Decoration.
Definition decoration.h:112
std::shared_ptr< DecorationState > currentState() const
Returns the currently applied state.
virtual std::shared_ptr< DecorationState > createState()
Create a state container.
DecoratedWindow * window() const
The DecoratedWindow for this Decoration.
QRectF titleBar
The titleBar is the area inside the Decoration containing all controls (e.g.
Definition decoration.h:134
std::shared_ptr< DecorationState > nextState() const
Returns the next state, i.e.
virtual void paint(QPainter *painter, const QRectF &repaintArea)=0
Implement this method in inheriting classes to provide the rendering.
void requestShowWindowMenu(const QRect &rect)
Decoration(QObject *parent, const QVariantList &args)
Constructor for the Decoration.
virtual bool init()=0
This method gets invoked from the framework once the Decoration is created and completely setup.
void setSettings(const std::shared_ptr< DecorationSettings > &settings)
Invoked by the framework to set the Settings for this Decoration before init is invoked.
QRegion blurRegion() const
The decoration's blur region in local coordinates.
QRectF rect() const
The decoration's geometry in local coordinates.
void apply(std::shared_ptr< DecorationState > state)
Qt::WindowFrameSection sectionUnderMouse
This property denotes the part of the Decoration which is currently under the mouse pointer.
Definition decoration.h:128
void setTitleBar(const QRectF &rect)
An implementation has to invoke this method whenever the area containing the controls and caption cha...
std::shared_ptr< DecorationSettings > settings() const
void setState(std::function< void(DecorationState *state)> callback)
Notifies the framework that the decoration state has changed.
bool opaque
Whether the Decoration is fully opaque.
Definition decoration.h:141
void popup(const Positioner &positioner, QMenu *menu)
Shows the given menu at the position specified by the positioner.
std::shared_ptr< DecorationShadow > shadow() const
DecorationShadow for this Decoration.
Popup positioner.
Definition decoration.h:64
void setAnchorRect(const QRectF &rect)
Sets the anchor rectangle to rect.
QRectF anchorRect() const
Returns the anchor rectangle.
Framework for creating window decorations.
QObject(QObject *parent)
Q_OBJECTQ_OBJECT
Q_PROPERTY(...)
Q_SIGNALSQ_SIGNALS
Q_SLOTSQ_SLOTS
QObject * parent() const const
WindowFrameSection
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Apr 4 2025 12:03:30 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.