QSkinny 0.8.0
C++/Qt UI toolkit
Loading...
Searching...
No Matches
QskTextArea.h
1/******************************************************************************
2 * QSkinny - Copyright (C) The authors
3 * SPDX-License-Identifier: BSD-3-Clause
4 *****************************************************************************/
5
6#ifndef QSK_TEXT_AREA_H
7#define QSK_TEXT_AREA_H
8
9#include "QskTextEdit.h"
10
11class QSK_EXPORT QskTextArea : public QskTextEdit
12{
13 Q_OBJECT
14
15 Q_PROPERTY( QString placeholderText READ placeholderText
16 WRITE setPlaceholderText NOTIFY placeholderTextChanged )
17
18 using Inherited = QskTextEdit;
19
20 public:
21 QSK_SUBCONTROLS( Panel, Placeholder )
22
23 QskTextArea( QQuickItem* parent = nullptr );
24 QskTextArea( const QString& text, QQuickItem* parent = nullptr );
25
26 ~QskTextArea() override;
27
28 void setPlaceholderText( const QString& );
29 QString placeholderText() const;
30
31 Q_SIGNALS:
32 void placeholderTextChanged( const QString& );
33
34 private:
35 class PrivateData;
36 std::unique_ptr< PrivateData > m_data;
37};
38
39#endif