QSkinny 0.8.0
C++/Qt UI toolkit
Loading...
Searching...
No Matches
QskTextFieldSkinlet.h
1/******************************************************************************
2 * QSkinny - Copyright (C) The authors
3 * SPDX-License-Identifier: BSD-3-Clause
4 *****************************************************************************/
5
6#ifndef QSK_TEXT_FIELD_SKINLET_H
7#define QSK_TEXT_FIELD_SKINLET_H
8
9#include "QskSkinlet.h"
10
11class QskTextField;
12
13class QSK_EXPORT QskTextFieldSkinlet : public QskSkinlet
14{
15 Q_GADGET
16
17 using Inherited = QskSkinlet;
18
19 public:
20 enum NodeRole : quint8
21 {
22 PanelRole,
23 TextPanelRole,
24 PlaceholderRole,
25 RoleCount
26 };
27
28 Q_INVOKABLE QskTextFieldSkinlet( QskSkin* = nullptr );
29 ~QskTextFieldSkinlet() override;
30
31 QRectF subControlRect( const QskSkinnable*,
32 const QRectF& rect, QskAspect::Subcontrol ) const override;
33
34 QSizeF sizeHint( const QskSkinnable*,
35 Qt::SizeHint, const QSizeF& ) const override;
36
37 protected:
38 QSGNode* updateSubNode( const QskSkinnable*,
39 quint8 nodeRole, QSGNode* ) const override;
40
41 virtual QString effectivePlaceholderText( const QskTextField* ) const;
42};
43
44#endif
Subcontrol
For use within the rendering or lay-outing of a specific QskSkinnable.
Definition QskAspect.h:104
Describes the rendering interface of a QskControl. Change the skinlet to change the appearance of the...
Definition QskSkinlet.h:34