1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2011 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 Qt3Support 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 Q3MULTILINEEDIT_H
|
---|
43 | #define Q3MULTILINEEDIT_H
|
---|
44 |
|
---|
45 | #include <Qt3Support/q3textedit.h>
|
---|
46 |
|
---|
47 | QT_BEGIN_HEADER
|
---|
48 |
|
---|
49 | QT_BEGIN_NAMESPACE
|
---|
50 |
|
---|
51 | QT_MODULE(Qt3SupportLight)
|
---|
52 |
|
---|
53 | #ifndef QT_NO_MULTILINEEDIT
|
---|
54 |
|
---|
55 | class Q3MultiLineEditCommand;
|
---|
56 | class QValidator;
|
---|
57 | class Q3MultiLineEditData;
|
---|
58 |
|
---|
59 | class Q_COMPAT_EXPORT Q3MultiLineEdit : public Q3TextEdit
|
---|
60 | {
|
---|
61 | Q_OBJECT
|
---|
62 | Q_PROPERTY(int numLines READ numLines)
|
---|
63 | Q_PROPERTY(bool atBeginning READ atBeginning)
|
---|
64 | Q_PROPERTY(bool atEnd READ atEnd)
|
---|
65 | Q_PROPERTY(Qt::Alignment alignment READ alignment WRITE setAlignment)
|
---|
66 | Q_PROPERTY(bool edited READ edited WRITE setEdited DESIGNABLE false)
|
---|
67 |
|
---|
68 | public:
|
---|
69 | Q3MultiLineEdit(QWidget* parent=0, const char* name=0);
|
---|
70 | ~Q3MultiLineEdit();
|
---|
71 |
|
---|
72 | QString textLine(int line) const;
|
---|
73 | int numLines() const;
|
---|
74 |
|
---|
75 | virtual void insertLine(const QString &s, int line = -1);
|
---|
76 | virtual void insertAt(const QString &s, int line, int col) {
|
---|
77 | insertAt(s, line, col, false);
|
---|
78 | }
|
---|
79 | virtual void insertAt(const QString &s, int line, int col, bool mark);
|
---|
80 | virtual void removeLine(int line);
|
---|
81 | virtual void setCursorPosition(int line, int col) {
|
---|
82 | setCursorPosition(line, col, false);
|
---|
83 | }
|
---|
84 | virtual void setCursorPosition(int line, int col, bool mark);
|
---|
85 | bool atBeginning() const;
|
---|
86 | bool atEnd() const;
|
---|
87 |
|
---|
88 | void setAlignment(Qt::Alignment flags);
|
---|
89 | Qt::Alignment alignment() const;
|
---|
90 |
|
---|
91 | void setEdited(bool);
|
---|
92 | bool edited() const;
|
---|
93 |
|
---|
94 | bool hasMarkedText() const;
|
---|
95 | QString markedText() const;
|
---|
96 |
|
---|
97 | void cursorWordForward(bool mark);
|
---|
98 | void cursorWordBackward(bool mark);
|
---|
99 |
|
---|
100 | // noops
|
---|
101 | bool autoUpdate() const { return true; }
|
---|
102 | virtual void setAutoUpdate(bool) {}
|
---|
103 |
|
---|
104 | int totalWidth() const { return contentsWidth(); }
|
---|
105 | int totalHeight() const { return contentsHeight(); }
|
---|
106 |
|
---|
107 | int maxLines() const { return QWIDGETSIZE_MAX; }
|
---|
108 | void setMaxLines(int) {}
|
---|
109 |
|
---|
110 | public Q_SLOTS:
|
---|
111 | void deselect() { selectAll(false); }
|
---|
112 |
|
---|
113 | protected:
|
---|
114 | QPoint cursorPoint() const;
|
---|
115 | virtual void insertAndMark(const QString&, bool mark);
|
---|
116 | virtual void newLine();
|
---|
117 | virtual void killLine();
|
---|
118 | virtual void pageUp(bool mark=false);
|
---|
119 | virtual void pageDown(bool mark=false);
|
---|
120 | virtual void cursorLeft(bool mark=false, bool wrap = true);
|
---|
121 | virtual void cursorRight(bool mark=false, bool wrap = true);
|
---|
122 | virtual void cursorUp(bool mark=false);
|
---|
123 | virtual void cursorDown(bool mark=false);
|
---|
124 | virtual void backspace();
|
---|
125 | virtual void home(bool mark=false);
|
---|
126 | virtual void end(bool mark=false);
|
---|
127 |
|
---|
128 | bool getMarkedRegion(int *line1, int *col1, int *line2, int *col2) const;
|
---|
129 | int lineLength(int row) const;
|
---|
130 |
|
---|
131 | private:
|
---|
132 | Q_DISABLE_COPY(Q3MultiLineEdit)
|
---|
133 |
|
---|
134 | Q3MultiLineEditData *d;
|
---|
135 | };
|
---|
136 |
|
---|
137 | #endif // QT_NO_MULTILINEEDIT
|
---|
138 |
|
---|
139 | QT_END_NAMESPACE
|
---|
140 |
|
---|
141 | QT_END_HEADER
|
---|
142 |
|
---|
143 | #endif // Q3MULTILINEEDIT_H
|
---|