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
Line 
1/****************************************************************************
2**
3** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
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**
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.
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**
36** If you have questions regarding the use of this file, please contact
37** Nokia at [email protected].
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)
98 Q_PROPERTY(bool ignoreUnusedNavigationEvents READ ignoreUnusedNavigationEvents WRITE setIgnoreUnusedNavigationEvents)
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