QSkinny 0.8.0
C++/Qt UI toolkit
Loading...
Searching...
No Matches
QskTextEdit.h
1/******************************************************************************
2 * QSkinny - Copyright (C) The authors
3 * SPDX-License-Identifier: BSD-3-Clause
4 *****************************************************************************/
5
6#ifndef QSK_TEXT_EDIT_H
7#define QSK_TEXT_EDIT_H
8
9#include "QskAbstractTextInput.h"
10#include "QskTextOptions.h"
11
12class QSK_EXPORT QskTextEdit : public QskAbstractTextInput
13{
14 Q_OBJECT
15
16 Q_PROPERTY( int lineCount READ lineCount NOTIFY lineCountChanged )
17
18 Q_PROPERTY( QskTextOptions::TextFormat textFormat READ textFormat
19 WRITE setTextFormat NOTIFY textFormatChanged )
20
21 Q_PROPERTY( qreal tabStopDistance READ tabStopDistance
22 WRITE setTabStopDistance NOTIFY tabStopDistanceChanged )
23
24 Q_PROPERTY( QUrl baseUrl READ baseUrl WRITE setBaseUrl
25 RESET resetBaseUrl NOTIFY baseUrlChanged )
26
28
29 public:
30 QSK_SUBCONTROLS( Text, TextPanel )
31
32 QskTextEdit( QQuickItem* parent = nullptr );
33 ~QskTextEdit() override;
34
35 void setTextFormat( QskTextOptions::TextFormat );
36 QskTextOptions::TextFormat textFormat() const;
37
38 int lineCount() const;
39
40 int tabStopDistance() const;
41 void setTabStopDistance( qreal );
42
43 QUrl baseUrl() const;
44 void setBaseUrl( const QUrl& );
45 void resetBaseUrl();
46
47 Q_SIGNALS:
48 void lineCountChanged( int );
49 void baseUrlChanged( QUrl );
50
51 void textFormatChanged( QskTextOptions::TextFormat );
52 void tabStopDistanceChanged( qreal );
53
54 void linkHovered( const QString& );
55 void linkActivated( const QString& );
56
57 protected:
58 QskAspect::Subcontrol substitutedSubcontrol(
59 QskAspect::Subcontrol ) const override;
60
61 private:
62 class PrivateData;
63 std::unique_ptr< PrivateData > m_data;
64};
65
66#endif
Subcontrol
For use within the rendering or lay-outing of a specific QskSkinnable.
Definition QskAspect.h:104