QSkinny 0.8.0
C++/Qt UI toolkit
Loading...
Searching...
No Matches
QskTextArea.cpp
1/******************************************************************************
2 * QSkinny - Copyright (C) The authors
3 * SPDX-License-Identifier: BSD-3-Clause
4 *****************************************************************************/
5
6#include "QskTextArea.h"
7
8QSK_SUBCONTROL( QskTextArea, Panel )
9QSK_SUBCONTROL( QskTextArea, Placeholder )
10
11class QskTextArea::PrivateData
12{
13 public:
14 QString placeholderText;
15};
16
17QskTextArea::QskTextArea( QQuickItem* parent )
18 : Inherited( parent )
19 , m_data( new PrivateData() )
20{
21}
22
23QskTextArea::QskTextArea( const QString& text, QQuickItem* parent )
24 : QskTextArea( parent )
25{
26 setText( text );
27}
28
29QskTextArea::~QskTextArea()
30{
31}
32
33void QskTextArea::setPlaceholderText( const QString& text )
34{
35 if ( m_data->placeholderText != text )
36 {
37 m_data->placeholderText = text;
38 Q_EMIT placeholderTextChanged( text );
39 }
40}
41
42QString QskTextArea::placeholderText() const
43{
44 return m_data->placeholderText;
45}
46
47#include "moc_QskTextArea.cpp"