QSkinny 0.8.0
C++/Qt UI toolkit
Loading...
Searching...
No Matches
QskTextEdit.cpp
1/******************************************************************************
2 * QSkinny - Copyright (C) The authors
3 * SPDX-License-Identifier: BSD-3-Clause
4 *****************************************************************************/
5
6#include "QskTextEdit.h"
7#include "QskInternalMacros.h"
8#include "QskQuick.h"
9
10QSK_QT_PRIVATE_BEGIN
11#include <private/qquicktextedit_p.h>
12#include <private/qquicktextedit_p_p.h>
13QSK_QT_PRIVATE_END
14
15QSK_SUBCONTROL( QskTextEdit, Text )
16QSK_SUBCONTROL( QskTextEdit, TextPanel )
17
18/*
19 Other properties offered from QQuickTextEdit:
20
21 - textMarginChanged
22 should be the TextPanel::Padding
23
24 - selectByKeyboardChanged(bool selectByKeyboard);
25 Why is this one specific for QQuickTextEdit ) ?
26
27 - tabStopDistanceChanged
28 Why is this one specific for QQuickTextEdit ?
29 */
30
31namespace
32{
33 class QuickTextEdit final : public QQuickTextEdit
34 {
35 Q_OBJECT
36
37 using Inherited = QQuickTextEdit;
38
39 public:
40 QuickTextEdit( QskTextEdit* );
41
42 inline void setAlignment( Qt::Alignment alignment )
43 {
44 setHAlign( ( HAlignment ) ( int( alignment ) & 0x0f ) );
45 setVAlign( ( VAlignment ) ( int( alignment ) & 0xf0 ) );
46 }
47
48 Q_INVOKABLE void updateColors();
49 Q_INVOKABLE void updateMetrics();
50 Q_INVOKABLE void setEditing( bool );
51 Q_INVOKABLE void handleEvent( QEvent* ev ) { event( ev ); }
52
53 protected:
54
55#if QT_VERSION >= QT_VERSION_CHECK( 6, 0, 0 )
56 void geometryChange(
57 const QRectF& newGeometry, const QRectF& oldGeometry ) override
58 {
59 Inherited::geometryChange( newGeometry, oldGeometry );
60 updateClip();
61 }
62#else
63 void geometryChanged(
64 const QRectF& newGeometry, const QRectF& oldGeometry ) override
65 {
66 Inherited::geometryChanged( newGeometry, oldGeometry );
67 updateClip();
68 }
69#endif
70
71 void updateClip()
72 {
73 setClip( ( contentWidth() > width() ) ||
74 ( contentHeight() > height() ) );
75 }
76
77 QSGNode* updatePaintNode(
78 QSGNode* oldNode, UpdatePaintNodeData* data ) override
79 {
80 updateColors();
81 return Inherited::updatePaintNode( oldNode, data );
82 }
83 };
84
85 QuickTextEdit::QuickTextEdit( QskTextEdit* textField )
86 : QQuickTextEdit( textField )
87 {
88 classBegin();
89
90 setActiveFocusOnTab( false );
91 setFlag( ItemAcceptsInputMethod, false );
92 setFocusOnPress( false );
93 setSelectByMouse( true );
94
95 componentComplete();
96
97 connect( this, &QuickTextEdit::contentSizeChanged,
98 this, &QuickTextEdit::updateClip );
99 }
100
101 void QuickTextEdit::setEditing( bool on )
102 {
103 Q_ASSERT( focusOnPress() == false );
104
105 QFocusEvent event( on ? QEvent::FocusIn : QEvent::FocusOut );
106 QQuickTextEditPrivate::get( this )->handleFocusEvent( &event );
107 }
108
109 void QuickTextEdit::updateMetrics()
110 {
111 auto textEdit = static_cast< const QskTextEdit* >( parentItem() );
112
113 setAlignment( textEdit->alignment() );
114 setFont( textEdit->font() );
115 }
116
117 void QuickTextEdit::updateColors()
118 {
119 using Q = QskTextEdit;
120
121 auto input = static_cast< const Q* >( parentItem() );
122
123 setColor( input->color( Q::Text ) );
124
125 const auto state = QskTextEdit::Selected;
126
127 setSelectionColor( input->color( Q::TextPanel | state ) );
128 setSelectedTextColor( input->color( Q::Text | state ) );
129 }
130}
131
132class QskTextEdit::PrivateData
133{
134 public:
135 QuickTextEdit* wrappedEdit;
136};
137
138QskTextEdit::QskTextEdit( QQuickItem* parent )
139 : Inherited( parent )
140 , m_data( new PrivateData() )
141{
142 m_data->wrappedEdit = new QuickTextEdit( this );
143 auto wrappedEdit = m_data->wrappedEdit;
144
145 setAcceptedMouseButtons( wrappedEdit->acceptedMouseButtons() );
146 wrappedEdit->setAcceptedMouseButtons( Qt::NoButton );
147
148 initSizePolicy( QskSizePolicy::Expanding, QskSizePolicy::Expanding );
149
150 setup( wrappedEdit );
151
152 connect( wrappedEdit, &QQuickTextEdit::lineCountChanged,
153 this, [this]() { Q_EMIT lineCountChanged( lineCount() ); } );
154
155 connect( wrappedEdit, &QQuickTextEdit::linkActivated,
156 this, &QskTextEdit::linkActivated );
157
158 connect( wrappedEdit, &QQuickTextEdit::linkHovered,
159 this, &QskTextEdit::linkHovered );
160
161 connect( wrappedEdit, &QQuickTextEdit::linkActivated,
162 this, &QskTextEdit::linkActivated );
163}
164
165QskTextEdit::~QskTextEdit()
166{
167}
168
169QskAspect::Subcontrol QskTextEdit::substitutedSubcontrol(
170 QskAspect::Subcontrol subControl ) const
171{
172 if ( subControl == Inherited::Text )
173 return Text;
174
175 if ( subControl == Inherited::TextPanel )
176 return TextPanel;
177
178 return Inherited::substitutedSubcontrol( subControl );
179}
180
181QUrl QskTextEdit::baseUrl() const
182{
183 return m_data->wrappedEdit->baseUrl();
184}
185
186void QskTextEdit::setBaseUrl( const QUrl& url )
187{
188 if ( url != m_data->wrappedEdit->baseUrl() )
189 {
190 m_data->wrappedEdit->setBaseUrl( url );
191 Q_EMIT baseUrlChanged( url );
192 }
193}
194
195void QskTextEdit::resetBaseUrl()
196{
197 m_data->wrappedEdit->resetBaseUrl();
198}
199
200void QskTextEdit::setTextFormat( QskTextOptions::TextFormat format )
201{
202 if ( format != textFormat() )
203 {
204 m_data->wrappedEdit->setTextFormat(
205 static_cast< QQuickTextEdit::TextFormat >( format ) );
206
207 Q_EMIT textFormatChanged( format );
208 }
209}
210
211QskTextOptions::TextFormat QskTextEdit::textFormat() const
212{
213 return static_cast< QskTextOptions::TextFormat >(
214 m_data->wrappedEdit->textFormat() );
215}
216
217int QskTextEdit::lineCount() const
218{
219 return m_data->wrappedEdit->lineCount();
220}
221
222int QskTextEdit::tabStopDistance() const
223{
224 return m_data->wrappedEdit->tabStopDistance();
225}
226
227void QskTextEdit::setTabStopDistance( qreal distance )
228{
229 // QTextOption !
230 m_data->wrappedEdit->setTabStopDistance( distance );
231}
232
233#include "QskTextEdit.moc"
234#include "moc_QskTextEdit.cpp"
Subcontrol
For use within the rendering or lay-outing of a specific QskSkinnable.
Definition QskAspect.h:104