1 | /**************************************************************************** |
2 | ** |
3 | ** Copyright (C) 2016 The Qt Company Ltd. |
4 | ** Contact: https://www.qt.io/licensing/ |
5 | ** |
6 | ** This file is part of the QtWidgets module of the Qt Toolkit. |
7 | ** |
8 | ** $QT_BEGIN_LICENSE:LGPL$ |
9 | ** Commercial License Usage |
10 | ** Licensees holding valid commercial Qt licenses may use this file in |
11 | ** accordance with the commercial license agreement provided with the |
12 | ** Software or, alternatively, in accordance with the terms contained in |
13 | ** a written agreement between you and The Qt Company. For licensing terms |
14 | ** and conditions see https://www.qt.io/terms-conditions. For further |
15 | ** information use the contact form at https://www.qt.io/contact-us. |
16 | ** |
17 | ** GNU Lesser General Public License Usage |
18 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
19 | ** General Public License version 3 as published by the Free Software |
20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the |
21 | ** packaging of this file. Please review the following information to |
22 | ** ensure the GNU Lesser General Public License version 3 requirements |
23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. |
24 | ** |
25 | ** GNU General Public License Usage |
26 | ** Alternatively, this file may be used under the terms of the GNU |
27 | ** General Public License version 2.0 or (at your option) the GNU General |
28 | ** Public license version 3 or any later version approved by the KDE Free |
29 | ** Qt Foundation. The licenses are as published by the Free Software |
30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 |
31 | ** included in the packaging of this file. Please review the following |
32 | ** information to ensure the GNU General Public License requirements will |
33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and |
34 | ** https://www.gnu.org/licenses/gpl-3.0.html. |
35 | ** |
36 | ** $QT_END_LICENSE$ |
37 | ** |
38 | ****************************************************************************/ |
39 | |
40 | #ifndef QCOMPLETER_P_H |
41 | #define QCOMPLETER_P_H |
42 | |
43 | |
44 | // |
45 | // W A R N I N G |
46 | // ------------- |
47 | // |
48 | // This file is not part of the Qt API. It exists purely as an |
49 | // implementation detail. This header file may change from version to |
50 | // version without notice, or even be removed. |
51 | // |
52 | // We mean it. |
53 | // |
54 | |
55 | #include <QtWidgets/private/qtwidgetsglobal_p.h> |
56 | #include "private/qobject_p.h" |
57 | |
58 | #include "QtWidgets/qabstractitemview.h" |
59 | #include "QtCore/qabstractproxymodel.h" |
60 | #include "qcompleter.h" |
61 | #include "qstyleditemdelegate.h" |
62 | #include "QtGui/qpainter.h" |
63 | #include "private/qabstractproxymodel_p.h" |
64 | |
65 | QT_REQUIRE_CONFIG(completer); |
66 | |
67 | QT_BEGIN_NAMESPACE |
68 | |
69 | class QCompletionModel; |
70 | |
71 | class QCompleterPrivate : public QObjectPrivate |
72 | { |
73 | Q_DECLARE_PUBLIC(QCompleter) |
74 | |
75 | public: |
76 | QCompleterPrivate(); |
77 | ~QCompleterPrivate() { delete popup; } |
78 | void init(QAbstractItemModel *model = nullptr); |
79 | |
80 | QPointer<QWidget> widget; |
81 | QCompletionModel *proxy; |
82 | QAbstractItemView *; |
83 | QCompleter::CompletionMode mode; |
84 | Qt::MatchFlags filterMode; |
85 | |
86 | QString prefix; |
87 | Qt::CaseSensitivity cs; |
88 | int role; |
89 | int column; |
90 | int maxVisibleItems; |
91 | QCompleter::ModelSorting sorting; |
92 | bool wrap; |
93 | |
94 | bool eatFocusOut; |
95 | QRect ; |
96 | bool hiddenBecauseNoMatch; |
97 | |
98 | void (const QRect&); |
99 | void _q_complete(QModelIndex, bool = false); |
100 | void _q_completionSelected(const QItemSelection&); |
101 | void (); |
102 | void _q_fileSystemModelDirectoryLoaded(const QString &path); |
103 | void setCurrentIndex(QModelIndex, bool = true); |
104 | |
105 | static QCompleterPrivate *get(QCompleter *o) { return o->d_func(); } |
106 | static const QCompleterPrivate *get(const QCompleter *o) { return o->d_func(); } |
107 | }; |
108 | |
109 | class QIndexMapper |
110 | { |
111 | public: |
112 | QIndexMapper() : v(false), f(0), t(-1) { } |
113 | QIndexMapper(int f, int t) : v(false), f(f), t(t) { } |
114 | QIndexMapper(const QList<int> &vec) : v(true), vector(vec), f(-1), t(-1) { } |
115 | |
116 | inline int count() const { return v ? vector.count() : t - f + 1; } |
117 | inline int operator[] (int index) const { return v ? vector[index] : f + index; } |
118 | inline int indexOf(int x) const { return v ? vector.indexOf(x) : ((t < f) ? -1 : x - f); } |
119 | inline bool isValid() const { return !isEmpty(); } |
120 | inline bool isEmpty() const { return v ? vector.isEmpty() : (t < f); } |
121 | inline void append(int x) { Q_ASSERT(v); vector.append(x); } |
122 | inline int first() const { return v ? vector.first() : f; } |
123 | inline int last() const { return v ? vector.last() : t; } |
124 | inline int from() const { Q_ASSERT(!v); return f; } |
125 | inline int to() const { Q_ASSERT(!v); return t; } |
126 | inline int cost() const { return vector.count()+2; } |
127 | |
128 | private: |
129 | bool v; |
130 | QList<int> vector; |
131 | int f, t; |
132 | }; |
133 | |
134 | struct QMatchData { |
135 | QMatchData() : exactMatchIndex(-1), partial(false) { } |
136 | QMatchData(const QIndexMapper& indices, int em, bool p) : |
137 | indices(indices), exactMatchIndex(em), partial(p) { } |
138 | QIndexMapper indices; |
139 | inline bool isValid() const { return indices.isValid(); } |
140 | int exactMatchIndex; |
141 | bool partial; |
142 | }; |
143 | |
144 | class QCompletionEngine |
145 | { |
146 | public: |
147 | typedef QMap<QString, QMatchData> CacheItem; |
148 | typedef QMap<QModelIndex, CacheItem> Cache; |
149 | |
150 | QCompletionEngine(QCompleterPrivate *c) : c(c), curRow(-1), cost(0) { } |
151 | virtual ~QCompletionEngine() { } |
152 | |
153 | void filter(const QStringList &parts); |
154 | |
155 | QMatchData filterHistory(); |
156 | bool matchHint(const QString &part, const QModelIndex &parent, QMatchData *m) const; |
157 | |
158 | void saveInCache(QString, const QModelIndex&, const QMatchData&); |
159 | bool lookupCache(const QString &part, const QModelIndex &parent, QMatchData *m) const; |
160 | |
161 | virtual void filterOnDemand(int) { } |
162 | virtual QMatchData filter(const QString&, const QModelIndex&, int) = 0; |
163 | |
164 | int matchCount() const { return curMatch.indices.count() + historyMatch.indices.count(); } |
165 | |
166 | QMatchData curMatch, historyMatch; |
167 | QCompleterPrivate *c; |
168 | QStringList curParts; |
169 | QModelIndex curParent; |
170 | int curRow; |
171 | |
172 | Cache cache; |
173 | int cost; |
174 | }; |
175 | |
176 | class QSortedModelEngine : public QCompletionEngine |
177 | { |
178 | public: |
179 | QSortedModelEngine(QCompleterPrivate *c) : QCompletionEngine(c) { } |
180 | QMatchData filter(const QString&, const QModelIndex&, int) override; |
181 | QIndexMapper indexHint(QString, const QModelIndex&, Qt::SortOrder); |
182 | Qt::SortOrder sortOrder(const QModelIndex&) const; |
183 | }; |
184 | |
185 | class QUnsortedModelEngine : public QCompletionEngine |
186 | { |
187 | public: |
188 | QUnsortedModelEngine(QCompleterPrivate *c) : QCompletionEngine(c) { } |
189 | |
190 | void filterOnDemand(int) override; |
191 | QMatchData filter(const QString&, const QModelIndex&, int) override; |
192 | private: |
193 | int buildIndices(const QString& str, const QModelIndex& parent, int n, |
194 | const QIndexMapper& iv, QMatchData* m); |
195 | }; |
196 | |
197 | class QCompleterItemDelegate : public QStyledItemDelegate |
198 | { |
199 | public: |
200 | QCompleterItemDelegate(QAbstractItemView *view) |
201 | : QStyledItemDelegate(view), view(view) { } |
202 | void paint(QPainter *p, const QStyleOptionViewItem& opt, const QModelIndex& idx) const override { |
203 | QStyleOptionViewItem optCopy = opt; |
204 | optCopy.showDecorationSelected = true; |
205 | if (view->currentIndex() == idx) |
206 | optCopy.state |= QStyle::State_HasFocus; |
207 | QStyledItemDelegate::paint(p, optCopy, idx); |
208 | } |
209 | |
210 | private: |
211 | QAbstractItemView *view; |
212 | }; |
213 | |
214 | class QCompletionModelPrivate; |
215 | |
216 | class QCompletionModel : public QAbstractProxyModel |
217 | { |
218 | Q_OBJECT |
219 | |
220 | public: |
221 | QCompletionModel(QCompleterPrivate *c, QObject *parent); |
222 | |
223 | void createEngine(); |
224 | void setFiltered(bool); |
225 | void filter(const QStringList& parts); |
226 | int completionCount() const; |
227 | int currentRow() const { return engine->curRow; } |
228 | bool setCurrentRow(int row); |
229 | QModelIndex currentIndex(bool) const; |
230 | |
231 | QModelIndex index(int row, int column, const QModelIndex & = QModelIndex()) const override; |
232 | int rowCount(const QModelIndex &index = QModelIndex()) const override; |
233 | int columnCount(const QModelIndex &index = QModelIndex()) const override; |
234 | bool hasChildren(const QModelIndex &parent = QModelIndex()) const override; |
235 | QModelIndex parent(const QModelIndex & = QModelIndex()) const override { return QModelIndex(); } |
236 | QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; |
237 | |
238 | void setSourceModel(QAbstractItemModel *sourceModel) override; |
239 | QModelIndex mapToSource(const QModelIndex& proxyIndex) const override; |
240 | QModelIndex mapFromSource(const QModelIndex& sourceIndex) const override; |
241 | |
242 | QCompleterPrivate *c; |
243 | QScopedPointer<QCompletionEngine> engine; |
244 | bool showAll; |
245 | |
246 | Q_DECLARE_PRIVATE(QCompletionModel) |
247 | |
248 | signals: |
249 | void rowsAdded(); |
250 | |
251 | public Q_SLOTS: |
252 | void invalidate(); |
253 | void rowsInserted(); |
254 | void modelDestroyed(); |
255 | }; |
256 | |
257 | class QCompletionModelPrivate : public QAbstractProxyModelPrivate |
258 | { |
259 | Q_DECLARE_PUBLIC(QCompletionModel) |
260 | }; |
261 | |
262 | QT_END_NAMESPACE |
263 | |
264 | #endif // QCOMPLETER_P_H |
265 | |