-
Notifications
You must be signed in to change notification settings - Fork 7
/
textedit_p.h
124 lines (113 loc) · 4.38 KB
/
textedit_p.h
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
// Copyright 2010 Anders Bakken
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef TEXTEDIT_P_H
#define TEXTEDIT_P_H
#include <QBasicTimer>
#include <QPoint>
#include <QAction>
#include <QScrollArea>
#include <QScrollBar>
#include "textlayout_p.h"
#include "textdocument_p.h"
#include "textcursor.h"
#include "textedit.h"
struct DocumentCommand;
struct CursorData {
int position, anchor;
};
class TextEditPrivate : public QObject, public TextLayout
{
Q_OBJECT
public:
TextEditPrivate(TextEdit *qptr)
: requestedScrollBarPosition(-1), lastRequestedScrollBarPosition(-1), cursorWidth(1),
sectionCount(0), maximumSizeCopy(50000), pendingTimeOut(-1), autoScrollLines(0),
readOnly(false), cursorVisible(false), blockScrollBarUpdate(false),
updateScrollBarPageStepPending(true), inMouseEvent(false), sectionPressed(0),
pendingScrollBarUpdate(false), sectionCursor(0)
{
textEdit = qptr;
}
bool canInsertFromMimeData(const QMimeData *data) const;
void updateHorizontalPosition();
void updateScrollBarPosition();
void updateScrollBarPageStep();
void scrollLines(int lines);
void timerEvent(QTimerEvent *e);
void updateCursorPosition(const QPoint &pos);
int findLastPageSize() const;
bool atBeginning() const { return viewportPosition == 0; }
bool atEnd() const { return textEdit->verticalScrollBar()->value() == textEdit->verticalScrollBar()->maximum(); }
bool dirtyForSection(TextSection *section);
void updateCopyAndCutEnabled();
bool isSectionOnScreen(const TextSection *section) const;
void cursorMoveKeyEventReadOnly(QKeyEvent *e);
virtual void relayout(); // from TextLayout
int requestedScrollBarPosition, lastRequestedScrollBarPosition, cursorWidth, sectionCount,
maximumSizeCopy, pendingTimeOut, autoScrollLines;
bool readOnly, cursorVisible, blockScrollBarUpdate, updateScrollBarPageStepPending, inMouseEvent;
QBasicTimer autoScrollTimer, cursorBlinkTimer;
QAction *actions[TextEdit::SelectAllAction];
TextSection *sectionPressed;
TextCursor textCursor, dragOverrideCursor;
QBasicTimer tripleClickTimer;
bool pendingScrollBarUpdate;
QCursor *sectionCursor;
QPoint lastHoverPos, lastMouseMove;
QHash<DocumentCommand *, QPair<CursorData, CursorData> > undoRedoCommands;
public slots:
void onSyntaxHighlighterDestroyed(QObject *o);
void onSelectionChanged();
void onTextSectionAdded(TextSection *section);
void onTextSectionRemoved(TextSection *section);
void onTextSectionFormatChanged(TextSection *section);
void onTextSectionCursorChanged(TextSection *section);
void updateScrollBar();
void onDocumentDestroyed();
void onDocumentSizeChanged(int size);
void onDocumentCommandInserted(DocumentCommand *cmd);
void onDocumentCommandFinished(DocumentCommand *cmd);
void onDocumentCommandRemoved(DocumentCommand *cmd);
void onDocumentCommandTriggered(DocumentCommand *cmd, bool undo);
void onScrollBarValueChanged(int value);
void onScrollBarActionTriggered(int action);
void onCharactersAddedOrRemoved(int index, int count);
};
class DebugWindow : public QWidget
{
public:
DebugWindow(TextEditPrivate *p)
: priv(p)
{
}
void paintEvent(QPaintEvent *)
{
if (priv->lines.isEmpty())
return;
QPainter p(this);
p.fillRect(QRect(0, pixels(priv->viewportPosition), width(),
pixels(priv->lines.last().first +
priv->lines.last().second.textLength())),
Qt::black);
p.fillRect(QRect(0, pixels(priv->viewportPosition), width(), pixels(priv->layoutEnd)), Qt::red);
}
int pixels(int pos) const
{
double fraction = double(pos) / double(priv->document->documentSize());
return int(double(height()) * fraction);
}
private:
TextEditPrivate *priv;
};
#endif