]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/TocModel.cpp
Fix the tab ordering of GuiDocument components.
[lyx.git] / src / frontends / qt4 / TocModel.cpp
1 /**
2  * \file TocModel.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  * \author Abdelrazak Younes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "TocModel.h"
15
16 #include "Buffer.h"
17 #include "BufferView.h"
18 #include "Cursor.h"
19 #include "DocIterator.h"
20 #include "FuncRequest.h"
21 #include "LyX.h"
22 #include "TocBackend.h"
23
24 #include "support/debug.h"
25 #include "support/lassert.h"
26
27 #include <QSortFilterProxyModel>
28
29 #include <climits>
30
31 using namespace std;
32
33 namespace lyx {
34 namespace frontend {
35
36 /// A QStandardItemModel that gives access to the reset methods.
37 /// This is needed in order to fix http://www.lyx.org/trac/ticket/3740
38 class TocTypeModel : public QStandardItemModel
39 {
40 public:
41         ///
42         TocTypeModel(QObject * parent) : QStandardItemModel(parent)
43         {}
44         ///
45         void reset()
46         {
47                 QStandardItemModel::reset();
48         }
49         ///
50         void beginResetModel()
51         { 
52         #if QT_VERSION >= 0x040600
53                 QStandardItemModel::beginResetModel(); 
54         #endif
55         }
56         ///
57         void endResetModel()
58         { 
59         #if QT_VERSION >= 0x040600
60                 QStandardItemModel::endResetModel(); 
61         #else
62                 QStandardItemModel::reset();
63         #endif
64         }
65 };
66
67
68 ///////////////////////////////////////////////////////////////////////////////
69 //
70 // TocModel
71 //
72 ///////////////////////////////////////////////////////////////////////////////
73
74 TocModel::TocModel(QObject * parent)
75         : model_(new TocTypeModel(parent)),
76         sorted_model_(new QSortFilterProxyModel(parent)),
77         is_sorted_(false), maxdepth_(0), mindepth_(0)
78 {
79 #if QT_VERSION >= 0x040300
80         sorted_model_->setSortLocaleAware(true);
81 #endif
82         sorted_model_->setSourceModel(model_);
83 }
84
85
86 QAbstractItemModel * TocModel::model()
87 {
88         if (is_sorted_)
89                 return sorted_model_;
90         return model_;
91 }
92
93
94 QAbstractItemModel const * TocModel::model() const
95 {
96         if (is_sorted_)
97                 return sorted_model_;
98         return model_;
99 }
100
101
102 void TocModel::clear()
103 {
104         model_->blockSignals(true);
105         model_->clear();
106         model_->blockSignals(false);
107 }
108
109
110 void TocModel::sort(bool sort_it)
111 {
112         is_sorted_ = sort_it;
113         if (is_sorted_)
114                 sorted_model_->sort(0);
115 }
116
117
118 TocItem const & TocModel::tocItem(QModelIndex const & index) const
119 {
120         return (*toc_)[model()->data(index, Qt::UserRole).toUInt()];
121 }
122
123
124 QModelIndex TocModel::modelIndex(DocIterator const & dit) const
125 {
126         if (toc_->empty())
127                 return QModelIndex();
128
129         unsigned int const toc_index = toc_->item(dit) - toc_->begin();
130
131         QModelIndexList list = model()->match(model()->index(0, 0), Qt::UserRole,
132                 QVariant(toc_index), 1,
133                 Qt::MatchFlags(Qt::MatchExactly | Qt::MatchRecursive));
134
135         LASSERT(!list.isEmpty(), return QModelIndex());
136         return list[0];
137 }
138
139
140 void TocModel::reset()
141 {
142         model_->reset();
143 }
144
145
146 void TocModel::updateItem(DocIterator const & dit)
147 {
148         QModelIndex index = modelIndex(dit);
149         TocItem const & toc_item = tocItem(index);
150         model_->setData(index, toqstr(toc_item.str()), Qt::DisplayRole);
151         model_->setData(index, toqstr(toc_item.tooltip()), Qt::ToolTipRole);
152 }
153
154
155 void TocModel::reset(Toc const & toc)
156 {
157         toc_ = &toc;
158         if (toc_->empty()) {
159                 maxdepth_ = 0;
160                 mindepth_ = 0;
161                 reset();
162                 return;
163         }
164
165         model_->blockSignals(true);
166         model_->beginResetModel();
167         model_->insertColumns(0, 1);
168         maxdepth_ = 0;
169         mindepth_ = INT_MAX;
170
171         size_t end = toc_->size();
172         for (unsigned int index = 0; index != end; ++index) {
173                 TocItem const & item = (*toc_)[index];
174                 maxdepth_ = max(maxdepth_, item.depth());
175                 mindepth_ = min(mindepth_, item.depth());
176                 int current_row = model_->rowCount();
177                 model_->insertRows(current_row, 1);
178                 QModelIndex top_level_item = model_->index(current_row, 0);
179                 model_->setData(top_level_item, toqstr(item.str()), Qt::DisplayRole);
180                 model_->setData(top_level_item, index, Qt::UserRole);
181                 model_->setData(top_level_item, toqstr(item.tooltip()), Qt::ToolTipRole);
182
183                 LYXERR(Debug::GUI, "Toc: at depth " << item.depth()
184                         << ", added item " << item.str());
185
186                 populate(index, top_level_item);
187                 if (index >= end)
188                         break;
189         }
190
191         model_->setHeaderData(0, Qt::Horizontal, QVariant("title"), Qt::DisplayRole);
192         if (is_sorted_)
193                 sorted_model_->sort(0);
194         model_->blockSignals(false);
195         model_->endResetModel();
196 //      emit headerDataChanged();
197 }
198
199
200 void TocModel::populate(unsigned int & index, QModelIndex const & parent)
201 {
202         int curdepth = (*toc_)[index].depth() + 1;
203
204         int current_row;
205         QModelIndex child_item;
206         model_->insertColumns(0, 1, parent);
207
208         size_t end = toc_->size();
209         ++index;
210         for (; index != end; ++index) {
211                 TocItem const & item = (*toc_)[index];
212                 if (item.depth() < curdepth) {
213                         --index;
214                         return;
215                 }
216                 maxdepth_ = max(maxdepth_, item.depth());
217                 mindepth_ = min(mindepth_, item.depth());
218                 current_row = model_->rowCount(parent);
219                 model_->insertRows(current_row, 1, parent);
220                 child_item = model_->index(current_row, 0, parent);
221                 model_->setData(child_item, toqstr(item.str()), Qt::DisplayRole);
222                 model_->setData(child_item, index, Qt::UserRole);
223                 model_->setData(child_item, toqstr(item.tooltip()), Qt::ToolTipRole);
224                 populate(index, child_item);
225                 if (index >= end)
226                         break;
227         }
228 }
229
230
231 int TocModel::modelDepth() const
232 {
233         int const d = maxdepth_ - mindepth_;
234         LASSERT(d >= 0 && d <= 100, return 0);
235         return d;
236 }
237
238
239 ///////////////////////////////////////////////////////////////////////////////
240 //
241 // TocModels
242 //
243 ///////////////////////////////////////////////////////////////////////////////
244
245 TocModels::TocModels()
246         : bv_(0)
247 {
248         names_ = new TocTypeModel(this);
249         names_sorted_ = new TocModelSortProxyModel(this);
250         names_sorted_->setSourceModel(names_);
251 #if QT_VERSION >= 0x040300
252         names_sorted_->setSortLocaleAware(true);
253 #endif
254         names_sorted_->sort(0);
255 }
256
257
258 void TocModels::clear()
259 {
260         names_->blockSignals(true);
261         names_->clear();
262         names_->blockSignals(false);
263         iterator end = models_.end();
264         for (iterator it = models_.begin(); it != end;  ++it)
265                 it.value()->clear();
266 }
267
268
269 int TocModels::depth(QString const & type)
270 {
271         const_iterator it = models_.find(type);
272         if (!bv_ || it == models_.end())
273                 return 0;
274         return it.value()->modelDepth();
275 }
276
277
278 QAbstractItemModel * TocModels::model(QString const & type)
279 {
280         if (!bv_)
281                 return 0;
282         iterator it = models_.find(type);
283         if (it != models_.end())
284                 return it.value()->model();
285         LYXERR0("type not found: " << type);
286         return 0;
287 }
288
289
290 QAbstractItemModel * TocModels::nameModel()
291 {
292         return names_sorted_;
293 }
294
295
296 QModelIndex TocModels::currentIndex(QString const & type) const
297 {
298         const_iterator it = models_.find(type);
299         if (!bv_ || it == models_.end())
300                 return QModelIndex();
301         return it.value()->modelIndex(bv_->cursor());
302 }
303
304
305 void TocModels::goTo(QString const & type, QModelIndex const & index) const
306 {
307         const_iterator it = models_.find(type);
308         if (it == models_.end() || !index.isValid()) {
309                 LYXERR(Debug::GUI, "TocModels::goTo(): QModelIndex is invalid!");
310                 return;
311         }
312         LASSERT(index.model() == it.value()->model(), return);
313         TocItem const item = it.value()->tocItem(index);
314         LYXERR(Debug::GUI, "TocModels::goTo " << item.str());
315         dispatch(item.action());
316 }
317
318
319 TocItem const TocModels::currentItem(QString const & type,
320         QModelIndex const & index) const
321 {
322         const_iterator it = models_.find(type);
323         if (it == models_.end() || !index.isValid()) {
324                 LYXERR(Debug::GUI, "TocModels::currentItem(): QModelIndex is invalid!");
325                 return TocItem();
326         }
327         LASSERT(index.model() == it.value()->model(), return TocItem());
328         
329         return it.value()->tocItem(index);
330 }
331  
332
333 void TocModels::updateBackend() const
334 {
335         bv_->buffer().masterBuffer()->tocBackend().update();
336         bv_->buffer().structureChanged();
337 }
338
339
340 void TocModels::updateItem(QString const & type, DocIterator const & dit)
341 {
342         models_[type]->updateItem(dit);
343 }
344
345
346 void TocModels::reset(BufferView const * bv)
347 {
348         bv_ = bv;
349         clear();
350         if (!bv_) {
351                 iterator end = models_.end();
352                 for (iterator it = models_.begin(); it != end;  ++it)
353                         it.value()->reset();
354                 names_->reset();
355                 return;
356         }
357
358         names_->blockSignals(true);
359         names_->beginResetModel();
360         names_->insertColumns(0, 1);
361         TocList const & tocs = bv_->buffer().masterBuffer()->tocBackend().tocs();
362         TocList::const_iterator it = tocs.begin();
363         TocList::const_iterator toc_end = tocs.end();
364         for (; it != toc_end; ++it) {
365                 QString const type = toqstr(it->first);
366
367                 // First, fill in the toc models.
368                 iterator mod_it = models_.find(type);
369                 if (mod_it == models_.end())
370                         mod_it = models_.insert(type, new TocModel(this));
371                 mod_it.value()->reset(it->second);
372
373                 // Fill in the names_ model.
374                 QString const gui_name = guiName(it->first, bv->buffer().params());
375                 int const current_row = names_->rowCount();
376                 names_->insertRows(current_row, 1);
377                 QModelIndex const index = names_->index(current_row, 0);
378                 names_->setData(index, gui_name, Qt::DisplayRole);
379                 names_->setData(index, type, Qt::UserRole);
380         }
381         names_->blockSignals(false);
382         names_->endResetModel();
383 }
384
385
386 bool TocModels::isSorted(QString const & type) const
387 {
388         const_iterator it = models_.find(type);
389         if (it == models_.end()) {
390                 LYXERR0("type not found: " << type);
391                 return false;
392         }
393         return it.value()->isSorted();
394 }
395
396
397 void TocModels::sort(QString const & type, bool sort_it)
398 {
399         iterator it = models_.find(type);
400         if (it == models_.end())
401                 LYXERR0("type not found: " << type);
402         else
403                 it.value()->sort(sort_it);
404 }
405
406 } // namespace frontend
407 } // namespace lyx
408
409 #include "moc_TocModel.cpp"