| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | | - |
| 4 | | - |
| 5 | | - |
| 6 | | - |
| 7 | | - |
| 8 | | - |
| 9 | | - |
| 10 | | - |
| 11 | | - |
| 12 | | - |
| 13 | | - |
| 14 | | - |
| 15 | | - |
| 16 | | - |
| 17 | | - |
| 18 | | - |
| 19 | | - |
| 20 | | - |
| 21 | | - |
| 22 | | - |
| 23 | | - |
| 24 | | - |
| 25 | | - |
| 26 | | - |
| 27 | | - |
| 28 | | - |
| 29 | | - |
| 30 | | - |
| 31 | | - |
| 32 | | - |
| 33 | | - |
| 34 | | - |
| 35 | | - |
| 36 | | - |
| 37 | | - |
| 38 | | - |
| 39 | | - |
| 40 | #ifndef QQUICKTEXTCONTROL_P_P_H | - |
| 41 | #define QQUICKTEXTCONTROL_P_P_H | - |
| 42 | | - |
| 43 | | - |
| 44 | | - |
| 45 | | - |
| 46 | | - |
| 47 | | - |
| 48 | | - |
| 49 | | - |
| 50 | | - |
| 51 | | - |
| 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 | | - |
| 62 | QT_BEGIN_NAMESPACE | - |
| 63 | | - |
| 64 | class QMimeData; | - |
| 65 | class QAbstractScrollArea; | - |
| 66 | | - |
| 67 | class QQuickTextControlPrivate : public QObjectPrivate | - |
| 68 | { | - |
| 69 | Q_DECLARE_PUBLIC(QQuickTextControl) | - |
| 70 | public: | - |
| 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 blockExecuted 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; | - |
| 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 | | - |
| 173 | QT_END_NAMESPACE | - |
| 174 | | - |
| 175 | #endif // QQuickTextControl_P_H | - |
| | |