17class QSK_EXPORT
QskItem :
public QQuickItem
21 Q_PROPERTY( QRectF geometry READ geometry WRITE setGeometry )
22 Q_PROPERTY( QRectF rect READ rect )
24 Q_PROPERTY(
bool tabFence READ isTabFence
25 WRITE setTabFence NOTIFY itemFlagsChanged )
27 Q_PROPERTY(
bool polishOnResize READ polishOnResize
28 WRITE setPolishOnResize NOTIFY itemFlagsChanged FINAL )
30 Q_PROPERTY(
bool polishOnParentResize READ polishOnParentResize
31 WRITE setPolishOnParentResize NOTIFY itemFlagsChanged FINAL )
33#if QT_VERSION < QT_VERSION_CHECK( 6, 7, 0 )
34 Q_PROPERTY( Qt::FocusPolicy focusPolicy READ focusPolicy
35 WRITE setFocusPolicy NOTIFY focusPolicyChanged )
38 Q_PROPERTY(
bool wheelEnabled READ isWheelEnabled
39 WRITE setWheelEnabled NOTIFY wheelEnabledChanged )
41 Q_PROPERTY(
bool visibleToParent READ isVisibleToParent )
42 Q_PROPERTY(
bool hasChildItems READ hasChildItems )
43 Q_PROPERTY(
bool initiallyPainted READ isInitiallyPainted )
45 Q_PROPERTY( UpdateFlags updateFlags READ updateFlags NOTIFY updateFlagsChanged )
47 using Inherited = QQuickItem;
52 DeferredUpdate = 1 << 0,
53 DeferredPolish = 1 << 1,
54 DeferredLayout = 1 << 2,
55 CleanupOnVisibility = 1 << 3,
57 PreferRasterForTextures = 1 << 4,
59 DebugForceBackground = 1 << 7
63 Q_DECLARE_FLAGS( UpdateFlags, UpdateFlag )
67 const char* className()
const;
69 bool isVisibleTo(
const QQuickItem* )
const;
70 bool isVisibleToParent()
const;
72 bool hasChildItems()
const;
75 QSizeF implicitSize()
const;
77 void setGeometry( qreal x, qreal y, qreal width, qreal height );
78 void setGeometry(
const QPointF&,
const QSizeF& );
79 QRectF geometry()
const;
81 using QQuickItem::setPosition;
82 using QQuickItem::setSize;
84 void setPosition( qreal x, qreal y );
85 void setSize( qreal width, qreal height );
87 void setPolishOnResize(
bool );
88 bool polishOnResize()
const;
90 void setPolishOnParentResize(
bool );
91 bool polishOnParentResize()
const;
93#if QT_VERSION < QT_VERSION_CHECK( 6, 7, 0 )
94 void setFocusPolicy( Qt::FocusPolicy );
95 Qt::FocusPolicy focusPolicy()
const;
98 void setTabFence(
bool );
99 bool isTabFence()
const;
101 void setWheelEnabled(
bool );
102 bool isWheelEnabled()
const;
104 void setLayoutMirroring(
bool on,
bool childrenInherit =
false );
105 void resetLayoutMirroring();
106 bool layoutMirroring()
const;
108 void resetUpdateFlags();
109 UpdateFlags updateFlags()
const;
111 void setUpdateFlag( UpdateFlag,
bool on =
true );
112 void resetUpdateFlag( UpdateFlag );
113 bool testUpdateFlag( UpdateFlag )
const;
115 void classBegin()
override;
116 void componentComplete()
override;
117 void releaseResources()
override;
119 bool isPolishScheduled()
const;
120 bool isUpdateNodeScheduled()
const;
121 bool isInitiallyPainted()
const;
123 bool maybeUnresized()
const;
126 void wheelEnabledChanged(
bool );
127#if QT_VERSION < QT_VERSION_CHECK( 6, 7, 0 )
128 void focusPolicyChanged( Qt::FocusPolicy );
135 void setGeometry(
const QRectF& );
140 void setHidden(
bool );
141 void setDisabled(
bool );
143 void resetImplicitSize();
147 void setVisible(
bool );
148 void setEnabled(
bool );
152 QskItem( QskItemPrivate&, QQuickItem* =
nullptr );
154 bool event( QEvent* )
override;
156 virtual void changeEvent( QEvent* );
161 void mouseUngrabEvent()
override;
162 void touchUngrabEvent()
override;
164#if QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 )
165 void windowDeactivateEvent()
override;
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;
173 void geometryChanged(
const QRectF&,
const QRectF& )
override final;
174 virtual void geometryChange(
const QRectF&,
const QRectF& );
177 virtual void aboutToShow();
181 QRectF boundingRect() const override final {
return rect(); }
188 void childrenRect() =
delete;
190 void setActiveFocusOnTab(
bool ) =
delete;
191 void applyUpdateFlag( UpdateFlag,
bool on );
193 QSGNode* updatePaintNode( QSGNode*, UpdatePaintNodeData* )
override final;
194 virtual QSGNode* updateItemPaintNode( QSGNode* );
196 void updatePolish() override final;
197 virtual
void updateItemPolish();