source: trunk/src/gui/text/qtextcontrol_p.h@ 563

Last change on this file since 563 was 561, checked in by Dmitry A. Kuminov, 15 years ago

trunk: Merged in qt 4.6.1 sources.

File size: 9.5 KB
RevLine 
[2]1/****************************************************************************
2**
3** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
[561]4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
[2]6**
7** This file is part of the QtGui module of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
15**
16** GNU Lesser General Public License Usage
17** Alternatively, this file may be used under the terms of the GNU Lesser
18** General Public License version 2.1 as published by the Free Software
19** Foundation and appearing in the file LICENSE.LGPL included in the
20** packaging of this file. Please review the following information to
21** ensure the GNU Lesser General Public License version 2.1 requirements
22** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23**
[561]24** In addition, as a special exception, Nokia gives you certain additional
25** rights. These rights are described in the Nokia Qt LGPL Exception
26** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
[2]27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
[561]36** If you have questions regarding the use of this file, please contact
37** Nokia at [email protected].
[2]38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#ifndef QTEXTCONTROL_P_H
43#define QTEXTCONTROL_P_H
44
45//
46// W A R N I N G
47// -------------
48//
49// This file is not part of the Qt API. It exists purely as an
50// implementation detail. This header file may change from version to
51// version without notice, or even be removed.
52//
53// We mean it.
54//
55
56#include <QtGui/qtextdocument.h>
57#include <QtGui/qtextoption.h>
58#include <QtGui/qtextcursor.h>
59#include <QtGui/qtextformat.h>
60#include <QtGui/qtextedit.h>
61#include <QtGui/qmenu.h>
62#include <QtCore/qrect.h>
63#include <QtGui/qabstracttextdocumentlayout.h>
64#include <QtGui/qtextdocumentfragment.h>
65
66#ifdef QT3_SUPPORT
67#include <QtGui/qtextobject.h>
68#include <QtGui/qtextlayout.h>
69#endif
70
71QT_BEGIN_HEADER
72
73QT_BEGIN_NAMESPACE
74
75QT_MODULE(Gui)
76
77class QStyleSheet;
78class QTextDocument;
79class QMenu;
80class QTextControlPrivate;
81class QMimeData;
82class QAbstractScrollArea;
83class QEvent;
84class QTimerEvent;
85
86class Q_GUI_EXPORT QTextControl : public QObject
87{
88 Q_OBJECT
89 Q_DECLARE_PRIVATE(QTextControl)
90#ifndef QT_NO_TEXTHTMLPARSER
91 Q_PROPERTY(QString html READ toHtml WRITE setHtml NOTIFY textChanged USER true)
92#endif
93 Q_PROPERTY(bool overwriteMode READ overwriteMode WRITE setOverwriteMode)
94 Q_PROPERTY(bool acceptRichText READ acceptRichText WRITE setAcceptRichText)
95 Q_PROPERTY(int cursorWidth READ cursorWidth WRITE setCursorWidth)
96 Q_PROPERTY(Qt::TextInteractionFlags textInteractionFlags READ textInteractionFlags WRITE setTextInteractionFlags)
97 Q_PROPERTY(bool openExternalLinks READ openExternalLinks WRITE setOpenExternalLinks)
[561]98 Q_PROPERTY(bool ignoreUnusedNavigationEvents READ ignoreUnusedNavigationEvents WRITE setIgnoreUnusedNavigationEvents)
[2]99public:
100 explicit QTextControl(QObject *parent = 0);
101 explicit QTextControl(const QString &text, QObject *parent = 0);
102 explicit QTextControl(QTextDocument *doc, QObject *parent = 0);
103 virtual ~QTextControl();
104
105 void setDocument(QTextDocument *document);
106 QTextDocument *document() const;
107
108 void setTextCursor(const QTextCursor &cursor);
109 QTextCursor textCursor() const;
110
111 void setTextInteractionFlags(Qt::TextInteractionFlags flags);
112 Qt::TextInteractionFlags textInteractionFlags() const;
113
114 void mergeCurrentCharFormat(const QTextCharFormat &modifier);
115
116 void setCurrentCharFormat(const QTextCharFormat &format);
117 QTextCharFormat currentCharFormat() const;
118
119 bool find(const QString &exp, QTextDocument::FindFlags options = 0);
120
121 inline QString toPlainText() const
122 { return document()->toPlainText(); }
123#ifndef QT_NO_TEXTHTMLPARSER
124 inline QString toHtml() const
125 { return document()->toHtml(); }
126#endif
127
128 virtual void ensureCursorVisible();
129
130 virtual QVariant loadResource(int type, const QUrl &name);
131#ifndef QT_NO_CONTEXTMENU
132 QMenu *createStandardContextMenu(const QPointF &pos, QWidget *parent);
133#endif
134
135 QTextCursor cursorForPosition(const QPointF &pos) const;
136 QRectF cursorRect(const QTextCursor &cursor) const;
137 QRectF cursorRect() const;
138 QRectF selectionRect(const QTextCursor &cursor) const;
139 QRectF selectionRect() const;
140
141 QString anchorAt(const QPointF &pos) const;
142 QPointF anchorPosition(const QString &name) const;
143
144 QString anchorAtCursor() const;
145
146 bool overwriteMode() const;
147 void setOverwriteMode(bool overwrite);
148
149 int cursorWidth() const;
150 void setCursorWidth(int width);
151
152 bool acceptRichText() const;
153 void setAcceptRichText(bool accept);
154
155#ifndef QT_NO_TEXTEDIT
156 void setExtraSelections(const QList<QTextEdit::ExtraSelection> &selections);
157 QList<QTextEdit::ExtraSelection> extraSelections() const;
158#endif
159
160 void setTextWidth(qreal width);
161 qreal textWidth() const;
162 QSizeF size() const;
163
164 void setOpenExternalLinks(bool open);
165 bool openExternalLinks() const;
166
[561]167 void setIgnoreUnusedNavigationEvents(bool ignore);
168 bool ignoreUnusedNavigationEvents() const;
169
[2]170 void moveCursor(QTextCursor::MoveOperation op, QTextCursor::MoveMode mode = QTextCursor::MoveAnchor);
171
172 bool canPaste() const;
173
174 void setCursorIsFocusIndicator(bool b);
175 bool cursorIsFocusIndicator() const;
176
177#ifndef QT_NO_PRINTER
178 void print(QPrinter *printer) const;
179#endif
180
181 virtual int hitTest(const QPointF &point, Qt::HitTestAccuracy accuracy) const;
182 virtual QRectF blockBoundingRect(const QTextBlock &block) const;
183 QAbstractTextDocumentLayout::PaintContext getPaintContext(QWidget *widget) const;
184
185
186
187public Q_SLOTS:
188 void setPlainText(const QString &text);
189 void setHtml(const QString &text);
190
191#ifndef QT_NO_CLIPBOARD
192 void cut();
193 void copy();
194 void paste();
195#endif
196
197 void undo();
198 void redo();
199
200 void clear();
201 void selectAll();
202
203 void insertPlainText(const QString &text);
204#ifndef QT_NO_TEXTHTMLPARSER
205 void insertHtml(const QString &text);
206#endif
207
208 void append(const QString &text);
209 void appendHtml(const QString &html);
210 void appendPlainText(const QString &text);
211
212 void adjustSize();
213
214Q_SIGNALS:
215 void textChanged();
216 void undoAvailable(bool b);
217 void redoAvailable(bool b);
218 void currentCharFormatChanged(const QTextCharFormat &format);
219 void copyAvailable(bool b);
220 void selectionChanged();
221 void cursorPositionChanged();
222
223 // control signals
224 void updateRequest(const QRectF &rect = QRectF());
225 void documentSizeChanged(const QSizeF &);
226 void blockCountChanged(int newBlockCount);
227 void visibilityRequest(const QRectF &rect);
228 void microFocusChanged();
229 void linkActivated(const QString &link);
230 void linkHovered(const QString &);
231 void modificationChanged(bool m);
232
233public:
234 // control properties
235 QPalette palette() const;
236 void setPalette(const QPalette &pal);
237
238 virtual void processEvent(QEvent *e, const QMatrix &matrix, QWidget *contextWidget = 0);
239 void processEvent(QEvent *e, const QPointF &coordinateOffset = QPointF(), QWidget *contextWidget = 0);
240
241 // control methods
242 void drawContents(QPainter *painter, const QRectF &rect = QRectF(), QWidget *widget = 0);
243
244 void setFocus(bool focus, Qt::FocusReason = Qt::OtherFocusReason);
245
246 virtual QVariant inputMethodQuery(Qt::InputMethodQuery property) const;
247
248 virtual QMimeData *createMimeDataFromSelection() const;
249 virtual bool canInsertFromMimeData(const QMimeData *source) const;
250 virtual void insertFromMimeData(const QMimeData *source);
251
252 bool setFocusToAnchor(const QTextCursor &newCursor);
253 bool setFocusToNextOrPreviousAnchor(bool next);
254 bool findNextPrevAnchor(const QTextCursor& from, bool next, QTextCursor& newAnchor);
255
256protected:
257 virtual void timerEvent(QTimerEvent *e);
258
259 virtual bool event(QEvent *e);
260
261private:
262 Q_DISABLE_COPY(QTextControl)
263 Q_PRIVATE_SLOT(d_func(), void _q_updateCurrentCharFormatAndSelection())
264 Q_PRIVATE_SLOT(d_func(), void _q_emitCursorPosChanged(const QTextCursor &))
265 Q_PRIVATE_SLOT(d_func(), void _q_deleteSelected())
266 Q_PRIVATE_SLOT(d_func(), void _q_copyLink())
267 Q_PRIVATE_SLOT(d_func(), void _q_updateBlock(const QTextBlock &))
268 Q_PRIVATE_SLOT(d_func(), void _q_documentLayoutChanged())
269};
270
271
272#ifndef QT_NO_CONTEXTMENU
273class QUnicodeControlCharacterMenu : public QMenu
274{
275 Q_OBJECT
276public:
277 QUnicodeControlCharacterMenu(QObject *editWidget, QWidget *parent);
278
279private Q_SLOTS:
280 void menuActionTriggered();
281
282private:
283 QObject *editWidget;
284};
285#endif // QT_NO_CONTEXTMENU
286
287
288// also used by QLabel
289class QTextEditMimeData : public QMimeData
290{
291public:
292 inline QTextEditMimeData(const QTextDocumentFragment &aFragment) : fragment(aFragment) {}
293
294 virtual QStringList formats() const;
295protected:
296 virtual QVariant retrieveData(const QString &mimeType, QVariant::Type type) const;
297private:
298 void setup() const;
299
300 mutable QTextDocumentFragment fragment;
301};
302
303QT_END_NAMESPACE
304
305QT_END_HEADER
306
307#endif // QTEXTCONTROL_H
Note: See TracBrowser for help on using the repository browser.