OpenCoverage

qquicktextcontrol_p_p.h

Absolute File Name:/home/opencoverage/opencoverage/guest-scripts/qtdeclarative/src/qtdeclarative/src/quick/items/qquicktextcontrol_p_p.h
Source codeSwitch to Preprocessed file
LineSourceCount
1/****************************************************************************-
2**-
3** Copyright (C) 2016 The Qt Company Ltd.-
4** Contact: https://www.qt.io/licensing/-
5**-
6** This file is part of the QtGui module of the Qt Toolkit.-
7**-
8** $QT_BEGIN_LICENSE:LGPL$-
9** Commercial License Usage-
10** Licensees holding valid commercial Qt licenses may use this file in-
11** accordance with the commercial license agreement provided with the-
12** Software or, alternatively, in accordance with the terms contained in-
13** a written agreement between you and The Qt Company. For licensing terms-
14** and conditions see https://www.qt.io/terms-conditions. For further-
15** information use the contact form at https://www.qt.io/contact-us.-
16**-
17** GNU Lesser General Public License Usage-
18** Alternatively, this file may be used under the terms of the GNU Lesser-
19** General Public License version 3 as published by the Free Software-
20** Foundation and appearing in the file LICENSE.LGPL3 included in the-
21** packaging of this file. Please review the following information to-
22** ensure the GNU Lesser General Public License version 3 requirements-
23** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.-
24**-
25** GNU General Public License Usage-
26** Alternatively, this file may be used under the terms of the GNU-
27** General Public License version 2.0 or (at your option) the GNU General-
28** Public license version 3 or any later version approved by the KDE Free-
29** Qt Foundation. The licenses are as published by the Free Software-
30** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3-
31** included in the packaging of this file. Please review the following-
32** information to ensure the GNU General Public License requirements will-
33** be met: https://www.gnu.org/licenses/gpl-2.0.html and-
34** https://www.gnu.org/licenses/gpl-3.0.html.-
35**-
36** $QT_END_LICENSE$-
37**-
38****************************************************************************/-
39-
40#ifndef QQUICKTEXTCONTROL_P_P_H-
41#define QQUICKTEXTCONTROL_P_P_H-
42-
43//-
44// W A R N I N G-
45// --------------
46//-
47// This file is not part of the Qt API. It exists purely as an-
48// implementation detail. This header file may change from version to-
49// version without notice, or even be removed.-
50//-
51// We mean it.-
52//-
53-
54#include "QtGui/qtextdocumentfragment.h"-
55#include "QtGui/qtextcursor.h"-
56#include "QtGui/qtextformat.h"-
57#include "QtGui/qabstracttextdocumentlayout.h"-
58#include "QtCore/qbasictimer.h"-
59#include "QtCore/qpointer.h"-
60#include "private/qobject_p.h"-
61-
62QT_BEGIN_NAMESPACE-
63-
64class QMimeData;-
65class QAbstractScrollArea;-
66-
67class QQuickTextControlPrivate : public QObjectPrivate-
68{-
69 Q_DECLARE_PUBLIC(QQuickTextControl)-
70public:-
71 QQuickTextControlPrivate();-
72-
73 bool cursorMoveKeyEvent(QKeyEvent *e);-
74-
75 void updateCurrentCharFormat();-
76-
77 void setContent(Qt::TextFormat format, const QString &text);-
78-
79 void paste(const QMimeData *source);-
80-
81 void setCursorPosition(const QPointF &pos);-
82 void setCursorPosition(int pos, QTextCursor::MoveMode mode = QTextCursor::MoveAnchor);-
83-
84 void repaintCursor();-
85 inline void repaintSelection()-
86 { repaintOldAndNewSelection(QTextCursor()); }
executed 962 times by 3 tests: end of block
Executed by:
  • tst_qquickfocusscope
  • tst_qquickitem2
  • tst_qquicktextedit
962
87 void repaintOldAndNewSelection(const QTextCursor &oldSelection);-
88-
89 void selectionChanged(bool forceEmitSelectionChanged = false);-
90-
91 void _q_updateCurrentCharFormatAndSelection();-
92-
93#if QT_CONFIG(clipboard)-
94 void setClipboardSelection();-
95#endif-
96-
97 void _q_updateCursorPosChanged(const QTextCursor &someCursor);-
98-
99 void setBlinkingCursorEnabled(bool enable);-
100 void updateCursorFlashTime();-
101-
102 void extendWordwiseSelection(int suggestedNewPosition, qreal mouseXPosition);-
103 void extendBlockwiseSelection(int suggestedNewPosition);-
104-
105 void _q_setCursorAfterUndoRedo(int undoPosition, int charsAdded, int charsRemoved);-
106-
107 QRectF rectForPosition(int position) const;-
108-
109 void keyPressEvent(QKeyEvent *e);-
110 void keyReleaseEvent(QKeyEvent *e);-
111 void mousePressEvent(QMouseEvent *event, const QPointF &pos);-
112 void mouseMoveEvent(QMouseEvent *event, const QPointF &pos);-
113 void mouseReleaseEvent(QMouseEvent *event, const QPointF &pos);-
114 void mouseDoubleClickEvent(QMouseEvent *event, const QPointF &pos);-
115 bool sendMouseEventToInputContext(QMouseEvent *event, const QPointF &pos);-
116 void focusEvent(QFocusEvent *e);-
117#if QT_CONFIG(im)-
118 void inputMethodEvent(QInputMethodEvent *);-
119#endif-
120 void hoverEvent(QHoverEvent *e, const QPointF &pos);-
121-
122 void activateLinkUnderCursor(QString href = QString());-
123-
124#if QT_CONFIG(im)-
125 bool isPreediting() const;-
126 void commitPreedit();-
127 void cancelPreedit();-
128#endif-
129-
130 QPointF tripleClickPoint;-
131 QPointF mousePressPos;-
132-
133 QTextCharFormat lastCharFormat;-
134-
135 QTextDocument *doc;-
136 QTextCursor cursor;-
137 QTextCursor selectedWordOnDoubleClick;-
138 QTextCursor selectedBlockOnTripleClick;-
139 QString anchorOnMousePress;-
140 QString linkToCopy;-
141 QString hoveredLink;-
142-
143 QBasicTimer cursorBlinkTimer;-
144 QBasicTimer tripleClickTimer;-
145-
146#if QT_CONFIG(im)-
147 int preeditCursor;-
148#endif-
149-
150 Qt::TextInteractionFlags interactionFlags;-
151-
152 bool cursorOn : 1;-
153 bool cursorIsFocusIndicator : 1;-
154 bool mousePressed : 1;-
155 bool lastSelectionState : 1;-
156 bool ignoreAutomaticScrollbarAdjustement : 1;-
157 bool overwriteMode : 1;-
158 bool acceptRichText : 1;-
159 bool cursorVisible : 1; // used to hide the cursor in the preedit area-
160 bool cursorBlinkingEnabled : 1;-
161 bool hasFocus : 1;-
162 bool hadSelectionOnMousePress : 1;-
163 bool wordSelectionEnabled : 1;-
164 bool hasImState : 1;-
165 bool cursorRectangleChanged : 1;-
166-
167 int lastSelectionStart;-
168 int lastSelectionEnd;-
169-
170 void _q_copyLink();-
171};-
172-
173QT_END_NAMESPACE-
174-
175#endif // QQuickTextControl_P_H-
Source codeSwitch to Preprocessed file

Generated by Squish Coco 4.2.0