]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/TocWidget.cpp
Really use qstr to convert a string in a QString
[lyx.git] / src / frontends / qt4 / TocWidget.cpp
1 /**
2  * \file TocWidget.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 "TocWidget.h"
15
16 #include "GuiApplication.h"
17 #include "GuiView.h"
18 #include "qt_helpers.h"
19 #include "TocModel.h"
20
21 #include "Buffer.h"
22 #include "BufferView.h"
23 #include "CutAndPaste.h"
24 #include "FuncRequest.h"
25 #include "FuncStatus.h"
26 #include "LyX.h"
27 #include "Menus.h"
28 #include "TocBackend.h"
29
30 #include "insets/InsetCommand.h"
31 #include "insets/InsetRef.h"
32
33 #include "support/debug.h"
34 #include "support/lassert.h"
35
36 #include <QHeaderView>
37 #include <QMenu>
38 #include <QTimer>
39
40 #include <vector>
41
42 #define DELAY_UPDATE_VIEW
43
44 using namespace std;
45
46 namespace lyx {
47 namespace frontend {
48
49 TocWidget::TocWidget(GuiView & gui_view, QWidget * parent)
50         : QWidget(parent), depth_(0), persistent_(false), gui_view_(gui_view), update_delay_(0)
51
52 {
53         setupUi(this);
54
55         moveOutTB->setIcon(QIcon(getPixmap("images/", "promote", "png")));
56         moveInTB->setIcon(QIcon(getPixmap("images/", "demote", "png")));
57         moveUpTB->setIcon(QIcon(getPixmap("images/", "up", "png")));
58         moveDownTB->setIcon(QIcon(getPixmap("images/", "down", "png")));
59         updateTB->setIcon(QIcon(getPixmap("images/", "reload", "png")));
60
61         // avoid flickering
62         tocTV->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
63
64         tocTV->showColumn(0);
65
66         // hide the pointless QHeader for now
67         // in the future, new columns may appear
68         // like labels, bookmarks, etc...
69         // tocTV->header()->hide();
70         tocTV->header()->setVisible(false);
71
72         // Only one item selected at a time.
73         tocTV->setSelectionMode(QAbstractItemView::SingleSelection);
74         setFocusProxy(tocTV);
75
76         // The toc types combo won't change its model.
77         typeCO->setModel(gui_view_.tocModels().nameModel());
78
79         // Make sure the buttons are disabled when first shown without a loaded
80         // Buffer.
81         enableControls(false);
82
83         // make us responsible for the context menu of the tabbar
84         setContextMenuPolicy(Qt::CustomContextMenu);
85         connect(this, SIGNAL(customContextMenuRequested(const QPoint &)),
86                 this, SLOT(showContextMenu(const QPoint &)));
87         connect(tocTV, SIGNAL(customContextMenuRequested(const QPoint &)),
88                 this, SLOT(showContextMenu(const QPoint &)));
89         connect(filterLE, SIGNAL(textEdited(QString)), 
90                 this, SLOT(filterContents()));
91
92         init(QString());
93 }
94
95
96 void TocWidget::showContextMenu(const QPoint & pos)
97 {
98         std::string name = "context-toc-" + fromqstr(current_type_);
99         QMenu * menu = guiApp->menus().menu(toqstr(name), gui_view_);
100         if (!menu)
101                 return; 
102         menu->exec(mapToGlobal(pos));
103 }
104
105
106 Inset * TocWidget::itemInset() const
107 {
108         QModelIndex const & index = tocTV->currentIndex();
109         TocItem const & item =
110                 gui_view_.tocModels().currentItem(current_type_, index);
111         DocIterator const & dit = item.dit();
112         
113         Inset * inset = 0;
114         if (current_type_ == "label" 
115                   || current_type_ == "graphics"
116                   || current_type_ == "citation"
117                   || current_type_ == "child")
118                 inset = dit.nextInset();
119
120         else if (current_type_ == "branch"
121                          || current_type_ == "index"
122                          || current_type_ == "change")
123                 inset = &dit.inset();
124
125         else if (current_type_ == "table" 
126                      || current_type_ == "listing"
127                      || current_type_ == "figure") {
128                 DocIterator tmp_dit(dit);
129                 tmp_dit.pop_back();
130                 inset = &tmp_dit.inset();
131         }
132         return inset;
133 }
134
135
136 bool TocWidget::getStatus(Cursor & cur, FuncRequest const & cmd,
137         FuncStatus & status) const
138 {
139         Inset * inset = itemInset();
140         FuncRequest tmpcmd(cmd);
141
142         QModelIndex const & index = tocTV->currentIndex();
143         TocItem const & item =
144                 gui_view_.tocModels().currentItem(current_type_, index);
145
146         switch (cmd.action())
147         {
148         case LFUN_CHANGE_ACCEPT:
149         case LFUN_CHANGE_REJECT:
150         case LFUN_OUTLINE_UP:
151         case LFUN_OUTLINE_DOWN:
152         case LFUN_OUTLINE_IN:
153         case LFUN_OUTLINE_OUT:
154         case LFUN_SECTION_SELECT:
155                 status.setEnabled(item.dit() != 0);
156                 return true;
157
158         case LFUN_LABEL_COPY_AS_REFERENCE: {
159                 // For labels in math, we need to supply the label as a string
160                 FuncRequest label_copy(LFUN_LABEL_COPY_AS_REFERENCE, item.asString());
161                 if (inset)
162                         return inset->getStatus(cur, label_copy, status);
163         }
164
165         default:
166                 if (inset)
167                         return inset->getStatus(cur, tmpcmd, status);
168         }
169
170         return false;
171 }
172
173
174 void TocWidget::doDispatch(Cursor & cur, FuncRequest const & cmd)
175 {
176         Inset * inset = itemInset();
177         FuncRequest tmpcmd(cmd);
178
179         QModelIndex const & index = tocTV->currentIndex();
180         TocItem const & item =
181                 gui_view_.tocModels().currentItem(current_type_, index);
182
183         // Start an undo group.
184         cur.beginUndoGroup();
185
186         switch (cmd.action())
187         {
188         case LFUN_CHANGE_ACCEPT:
189         case LFUN_CHANGE_REJECT:
190                 dispatch(item.action());
191                 cur.dispatch(tmpcmd);
192                 break;
193
194         case LFUN_SECTION_SELECT:
195                 dispatch(item.action());
196                 cur.dispatch(tmpcmd);
197                 // necessary to get the selection drawn.
198                 cur.buffer()->changed(true);
199                 break;
200
201         case LFUN_LABEL_COPY_AS_REFERENCE: {
202                 // For labels in math, we need to supply the label as a string
203                 FuncRequest label_copy(LFUN_LABEL_COPY_AS_REFERENCE, item.asString());
204                 if (inset)
205                         inset->dispatch(cur, label_copy);
206                 break;
207         }
208
209         case LFUN_OUTLINE_UP:
210         case LFUN_OUTLINE_DOWN:
211         case LFUN_OUTLINE_IN:
212         case LFUN_OUTLINE_OUT:
213                 outline(cmd.action());
214                 break;
215
216         default:
217                 if (inset)
218                         inset->dispatch(cur, tmpcmd);
219         }
220         cur.endUndoGroup();
221 }
222
223
224 void TocWidget::on_tocTV_activated(QModelIndex const & index)
225 {
226         goTo(index);
227 }
228
229
230 void TocWidget::on_tocTV_pressed(QModelIndex const & index)
231 {
232         Qt::MouseButtons const button = QApplication::mouseButtons();
233         if (button & Qt::LeftButton) {
234                 goTo(index);
235                 gui_view_.setFocus();
236         }
237 }
238
239
240 void TocWidget::goTo(QModelIndex const & index)
241 {
242         LYXERR(Debug::GUI, "goto " << index.row()
243                 << ", " << index.column());
244
245         gui_view_.tocModels().goTo(current_type_, index);
246 }
247
248
249 void TocWidget::on_updateTB_clicked()
250 {
251         // The backend update can take some time so we disable
252         // the controls while waiting.
253         enableControls(false);
254         gui_view_.currentBufferView()->buffer().updateBuffer();
255 }
256
257
258 void TocWidget::on_sortCB_stateChanged(int state)
259 {
260         gui_view_.tocModels().sort(current_type_, state == Qt::Checked);
261         updateViewForce();
262 }
263
264
265 void TocWidget::on_persistentCB_stateChanged(int state)
266 {
267         persistent_ = state == Qt::Checked;
268 }
269
270
271 #if 0
272 /* FIXME (Ugras 17/11/06):
273 I have implemented a indexDepth function to get the model indices. In my
274 opinion, somebody should derive a new qvariant class for tocModelItem
275 which saves the string data and depth information. That will save the
276 depth calculation.  */
277
278 static int indexDepth(QModelIndex const & index, int depth = -1)
279 {
280         ++depth;
281         return index.parent() == QModelIndex()
282                 ? depth : indexDepth(index.parent(), depth);
283 }
284 #endif
285
286 void TocWidget::on_depthSL_valueChanged(int depth)
287 {
288         if (depth == depth_)
289                 return;
290         setTreeDepth(depth);
291         gui_view_.setFocus();
292 }
293
294
295 void TocWidget::setTreeDepth(int depth)
296 {
297         depth_ = depth;
298         if (!tocTV->model())
299                 return;
300
301         if (depth == 0)
302                 tocTV->collapseAll();
303         else
304                 tocTV->expandToDepth(depth - 1);
305 }
306
307
308 void TocWidget::on_typeCO_currentIndexChanged(int index)
309 {
310         if (index == -1)
311                 return;
312         current_type_ = typeCO->itemData(index).toString();
313         updateViewForce();
314         if (typeCO->hasFocus())
315                 gui_view_.setFocus();
316 }
317
318
319 void TocWidget::outline(FuncCode func_code)
320 {
321         QModelIndexList const & list = tocTV->selectionModel()->selectedIndexes();
322         if (list.isEmpty())
323                 return;
324         enableControls(false);
325         goTo(list[0]);
326         dispatch(FuncRequest(func_code));
327         enableControls(true);
328         gui_view_.setFocus();
329 }
330
331
332 void TocWidget::on_moveUpTB_clicked()
333 {
334         outline(LFUN_OUTLINE_UP);
335 }
336
337
338 void TocWidget::on_moveDownTB_clicked()
339 {
340         outline(LFUN_OUTLINE_DOWN);
341 }
342
343
344 void TocWidget::on_moveInTB_clicked()
345 {
346         outline(LFUN_OUTLINE_IN);
347 }
348
349
350 void TocWidget::on_moveOutTB_clicked()
351 {
352         outline(LFUN_OUTLINE_OUT);
353 }
354
355
356 void TocWidget::select(QModelIndex const & index)
357 {
358         if (!index.isValid()) {
359                 LYXERR(Debug::GUI, "TocWidget::select(): QModelIndex is invalid!");
360                 return;
361         }
362
363         tocTV->scrollTo(index);
364         tocTV->clearSelection();
365         tocTV->setCurrentIndex(index);
366 }
367
368
369 void TocWidget::enableControls(bool enable)
370 {
371         updateTB->setEnabled(enable);
372
373         if (!canOutline())
374                 enable = false;
375
376         moveUpTB->setEnabled(enable);
377         moveDownTB->setEnabled(enable);
378         moveInTB->setEnabled(enable);
379         moveOutTB->setEnabled(enable);
380 }
381
382
383 void TocWidget::updateView()
384 {
385 // Enable if you dont want the delaying business, cf #7138.
386 #ifndef DELAY_UPDATE_VIEW
387         updateViewForce();
388         return;
389 #endif
390         // already scheduled?
391         if (update_delay_ == -1)
392                 return;
393         QTimer::singleShot(update_delay_, this, SLOT(updateViewForce()));
394         // Subtler optimization for having the delay more UI invisible.
395         // We trigger update immediately for sparse editation actions,
396         // i.e. there was no editation/cursor movement in last 2 sec.
397         // At worst there will be +1 redraw after 2s in a such "calm" mode.
398         if (update_delay_ != 0)
399                 updateViewForce();
400         update_delay_ = -1;
401 }
402
403 void TocWidget::updateViewForce()
404 {
405         update_delay_ = 2000;
406         if (!gui_view_.documentBufferView()) {
407                 tocTV->setModel(0);
408                 depthSL->setMaximum(0);
409                 depthSL->setValue(0);
410                 setEnabled(false);
411                 return;
412         }
413         setEnabled(true);
414         bool const is_sortable = isSortable();
415         sortCB->setEnabled(is_sortable);
416         bool focus_ = tocTV->hasFocus();
417         tocTV->setEnabled(false);
418         tocTV->setUpdatesEnabled(false);
419
420         QAbstractItemModel * toc_model = 
421                         gui_view_.tocModels().model(current_type_);
422         if (tocTV->model() != toc_model) {
423                 tocTV->setModel(toc_model);
424                 tocTV->setEditTriggers(QAbstractItemView::NoEditTriggers);
425                 if (persistent_)
426                         setTreeDepth(depth_);
427         }
428
429         sortCB->blockSignals(true);
430         sortCB->setChecked(is_sortable
431                 && gui_view_.tocModels().isSorted(current_type_));
432         sortCB->blockSignals(false);
433
434         bool const can_navigate_ = canNavigate();
435         persistentCB->setEnabled(can_navigate_);
436
437         bool controls_enabled = toc_model && toc_model->rowCount() > 0
438                 && !gui_view_.documentBufferView()->buffer().isReadonly();
439         enableControls(controls_enabled);
440
441         depthSL->setMaximum(gui_view_.tocModels().depth(current_type_));
442         depthSL->setValue(depth_);
443         if (!persistent_ && can_navigate_)
444                 setTreeDepth(depth_);
445         if (can_navigate_) {
446                 persistentCB->setChecked(persistent_);
447                 select(gui_view_.tocModels().currentIndex(current_type_));
448         }
449         filterContents();
450         tocTV->setEnabled(true);
451         tocTV->setUpdatesEnabled(true);
452         if (focus_)
453                 tocTV->setFocus();
454 }
455
456
457 void TocWidget::filterContents()
458 {
459         if (!tocTV->model())
460                 return;
461
462         QModelIndexList indices = tocTV->model()->match(
463                 tocTV->model()->index(0, 0),
464                 Qt::DisplayRole, "*", -1,
465                 Qt::MatchFlags(Qt::MatchWildcard|Qt::MatchRecursive));
466
467         int size = indices.size();
468         for (int i = 0; i < size; i++) {
469                 QModelIndex index = indices[i];
470                 bool const matches =
471                         index.data().toString().contains(
472                                 filterLE->text(), Qt::CaseInsensitive);
473                 tocTV->setRowHidden(index.row(), index.parent(), !matches);
474         }
475         // recursively unhide parents of unhidden children 
476         for (int i = size - 1; i >= 0; i--) {
477                 QModelIndex index = indices[i];
478                 if (!tocTV->isRowHidden(index.row(), index.parent())
479                     && index.parent() != QModelIndex())
480                         tocTV->setRowHidden(index.parent().row(),
481                                             index.parent().parent(), false);
482         }
483 }
484
485
486 static QString decodeType(QString const & str)
487 {
488         QString type = str;
489         if (type.contains("tableofcontents"))
490                 type = "tableofcontents";
491         else if (type.contains("lstlistoflistings"))
492                 type = "listing";
493         else if (type.contains("floatlist")) {
494                 if (type.contains("\"figure"))
495                         type = "figure";
496                 else if (type.contains("\"table"))
497                         type = "table";
498                 else if (type.contains("\"algorithm"))
499                         type = "algorithm";
500         }
501         return type;
502 }
503
504
505 void TocWidget::init(QString const & str)
506 {
507         int new_index;
508         if (str.isEmpty())
509                 new_index = typeCO->findData(current_type_);
510         else
511                 new_index = typeCO->findData(decodeType(str));
512
513         // If everything else fails, settle on the table of contents which is
514         // guaranteed to exist.
515         if (new_index == -1) {
516                 current_type_ = "tableofcontents";
517                 new_index = typeCO->findData(current_type_);
518         } else {
519                 current_type_ = typeCO->itemData(new_index).toString();
520         }
521
522         typeCO->blockSignals(true);
523         typeCO->setCurrentIndex(new_index);
524         typeCO->blockSignals(false);
525
526         // no delay when the whole outliner is reseted.
527         update_delay_ = 0;
528 }
529
530 } // namespace frontend
531 } // namespace lyx
532
533 #include "moc_TocWidget.cpp"