QSkinny 0.8.0
C++/Qt UI toolkit
Loading...
Searching...
No Matches
QskItem.h
1/******************************************************************************
2 * QSkinny - Copyright (C) The authors
3 * SPDX-License-Identifier: BSD-3-Clause
4 *****************************************************************************/
5
6#ifndef QSK_ITEM_H
7#define QSK_ITEM_H
8
9#include "QskGlobal.h"
10#include <qquickitem.h>
11
12class QskItemPrivate;
16
17class QSK_EXPORT QskItem : public QQuickItem
18{
19 Q_OBJECT
20
21 Q_PROPERTY( QRectF geometry READ geometry WRITE setGeometry )
22 Q_PROPERTY( QRectF rect READ rect )
23
24 Q_PROPERTY( bool tabFence READ isTabFence
25 WRITE setTabFence NOTIFY itemFlagsChanged )
26
27 Q_PROPERTY( bool polishOnResize READ polishOnResize
28 WRITE setPolishOnResize NOTIFY itemFlagsChanged FINAL )
29
30 Q_PROPERTY( bool polishOnParentResize READ polishOnParentResize
31 WRITE setPolishOnParentResize NOTIFY itemFlagsChanged FINAL )
32
33#if QT_VERSION < QT_VERSION_CHECK( 6, 7, 0 )
34 Q_PROPERTY( Qt::FocusPolicy focusPolicy READ focusPolicy
35 WRITE setFocusPolicy NOTIFY focusPolicyChanged )
36#endif
37
38 Q_PROPERTY( bool wheelEnabled READ isWheelEnabled
39 WRITE setWheelEnabled NOTIFY wheelEnabledChanged )
40
41 Q_PROPERTY( bool visibleToParent READ isVisibleToParent )
42 Q_PROPERTY( bool hasChildItems READ hasChildItems )
43 Q_PROPERTY( bool initiallyPainted READ isInitiallyPainted )
44
45 Q_PROPERTY( UpdateFlags updateFlags READ updateFlags NOTIFY updateFlagsChanged )
46
47 using Inherited = QQuickItem;
48
49 public:
50 enum UpdateFlag : quint16
51 {
52 DeferredUpdate = 1 << 0,
53 DeferredPolish = 1 << 1,
54 DeferredLayout = 1 << 2,
55 CleanupOnVisibility = 1 << 3,
56
57 PreferRasterForTextures = 1 << 4,
58
59 DebugForceBackground = 1 << 7
60 };
61
62 Q_ENUM( UpdateFlag )
63 Q_DECLARE_FLAGS( UpdateFlags, UpdateFlag )
64
65 ~QskItem() override;
66
67 const char* className() const;
68
69 bool isVisibleTo( const QQuickItem* ) const;
70 bool isVisibleToParent() const;
71
72 bool hasChildItems() const;
73
74 QRectF rect() const;
75 QSizeF implicitSize() const;
76
77 void setGeometry( qreal x, qreal y, qreal width, qreal height );
78 void setGeometry( const QPointF&, const QSizeF& );
79 QRectF geometry() const;
80
81 using QQuickItem::setPosition;
82 using QQuickItem::setSize;
83
84 void setPosition( qreal x, qreal y );
85 void setSize( qreal width, qreal height );
86
87 void setPolishOnResize( bool );
88 bool polishOnResize() const;
89
90 void setPolishOnParentResize( bool );
91 bool polishOnParentResize() const;
92
93#if QT_VERSION < QT_VERSION_CHECK( 6, 7, 0 )
94 void setFocusPolicy( Qt::FocusPolicy );
95 Qt::FocusPolicy focusPolicy() const;
96#endif
97
98 void setTabFence( bool );
99 bool isTabFence() const;
100
101 void setWheelEnabled( bool );
102 bool isWheelEnabled() const;
103
104 void setLayoutMirroring( bool on, bool childrenInherit = false );
105 void resetLayoutMirroring();
106 bool layoutMirroring() const;
107
108 void resetUpdateFlags();
109 UpdateFlags updateFlags() const;
110
111 void setUpdateFlag( UpdateFlag, bool on = true );
112 void resetUpdateFlag( UpdateFlag );
113 bool testUpdateFlag( UpdateFlag ) const;
114
115 void classBegin() override;
116 void componentComplete() override;
117 void releaseResources() override;
118
119 bool isPolishScheduled() const;
120 bool isUpdateNodeScheduled() const;
121 bool isInitiallyPainted() const;
122
123 bool maybeUnresized() const;
124
125 Q_SIGNALS:
126 void wheelEnabledChanged( bool );
127#if QT_VERSION < QT_VERSION_CHECK( 6, 7, 0 )
128 void focusPolicyChanged( Qt::FocusPolicy );
129#endif
130
132 void updateFlagsChanged( UpdateFlags );
133
134 public Q_SLOTS:
135 void setGeometry( const QRectF& );
136
137 void show();
138 void hide();
139
140 void setHidden( bool );
141 void setDisabled( bool );
142
143 void resetImplicitSize();
144
145#ifdef Q_MOC_RUN
146 // methods from QQuickItem, we want to be available as string based slots
147 void setVisible( bool );
148 void setEnabled( bool );
149#endif
150
151 protected:
152 QskItem( QskItemPrivate&, QQuickItem* = nullptr );
153
154 bool event( QEvent* ) override;
155
156 virtual void changeEvent( QEvent* );
157 virtual void geometryChangeEvent( QskGeometryChangeEvent* );
158 virtual void viewportChangeEvent( QskViewportChangeEvent* );
159 virtual void windowChangeEvent( QskWindowChangeEvent* );
160
161 void mouseUngrabEvent() override;
162 void touchUngrabEvent() override;
163
164#if QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 )
165 void windowDeactivateEvent() override;
166#endif
167
168 void itemChange( ItemChange, const ItemChangeData& ) override;
169#if QT_VERSION >= QT_VERSION_CHECK( 6, 0, 0 )
170 void geometryChange( const QRectF&, const QRectF& ) override;
171#else
172 // using geometryChange also for Qt5
173 void geometryChanged( const QRectF&, const QRectF& ) override final;
174 virtual void geometryChange( const QRectF&, const QRectF& );
175#endif
176
177 virtual void aboutToShow(); // called in updatePolish
178
179 private:
180 // don't use boundingRect - it seems to be deprecated
181 QRectF boundingRect() const override final { return rect(); }
182
183 /*
184 childrenRect()/childrenRectChanged does not make much sense
185 in a system, where the parent is responsible for laying out
186 its children.
187 */
188 void childrenRect() = delete;
189
190 void setActiveFocusOnTab( bool ) = delete; // use setFocusPolicy
191 void applyUpdateFlag( UpdateFlag, bool on );
192
193 QSGNode* updatePaintNode( QSGNode*, UpdatePaintNodeData* ) override final;
194 virtual QSGNode* updateItemPaintNode( QSGNode* );
195
196 void updatePolish() override final;
197 virtual void updateItemPolish();
198
199 Q_DECLARE_PRIVATE( QskItem )
200};
201
202inline bool QskItem::hasChildItems() const
203{
204 return !childItems().isEmpty();
205}
206
207inline void QskItem::setGeometry( const QPointF& pos, const QSizeF& size )
208{
209 setGeometry( pos.x(), pos.y(), size.width(), size.height() );
210}
211
212inline void QskItem::setGeometry( const QRectF& rect )
213{
214 setGeometry( rect.x(), rect.y(), rect.width(), rect.height() );
215}
216
217inline void QskItem::setPosition( qreal x, qreal y )
218{
219 QQuickItem::setPosition( QPointF( x, y ) );
220}
221
222inline void QskItem::setSize( qreal width, qreal height )
223{
224 QQuickItem::setSize( QSizeF( width, height ) );
225}
226
227inline QSizeF QskItem::implicitSize() const
228{
229 return QSizeF( implicitWidth(), implicitHeight() );
230}
231
232Q_DECLARE_OPERATORS_FOR_FLAGS( QskItem::UpdateFlags )
233Q_DECLARE_METATYPE( QskItem::UpdateFlags )
234
235#endif
QSizeF implicitSize() const
Definition QskItem.h:227
UpdateFlag
Definition QskItem.h:51
void itemFlagsChanged()
void updateFlagsChanged(UpdateFlags)
void setGeometry(qreal x, qreal y, qreal width, qreal height)
Definition QskItem.cpp:332