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