]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/TocWidget.cpp
Fix assertion with LOF and LOT by transfering the test from TocWidget::select() to...
[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 "QToc.h"
17 #include "qt_helpers.h"
18 #include "support/filetools.h"
19 #include "support/lstrings.h"
20
21 #include "debug.h"
22
23 #include <QHeaderView>
24 #include <QPushButton>
25 #include <QTreeWidgetItem>
26
27 #include <vector>
28 #include <string>
29 #include <stack>
30
31 using std::endl;
32 using std::pair;
33 using std::stack;
34 using std::vector;
35 using std::string;
36
37
38 namespace lyx {
39
40 using support::FileName;
41 using support::libFileSearch;
42         
43 namespace frontend {
44
45 TocWidget::TocWidget(QToc * form, QWidget * parent)
46         : QWidget(parent), form_(form), depth_(0)
47 {
48         setupUi(this);
49
50         connect(form, SIGNAL(modelReset()),
51                 SLOT(updateGui()));
52         
53         FileName icon_path = libFileSearch("images", "promote.xpm");
54         moveOutTB->setIcon(QIcon(toqstr(icon_path.absFilename())));
55         icon_path = libFileSearch("images", "demote.xpm");
56         moveInTB->setIcon(QIcon(toqstr(icon_path.absFilename())));
57         icon_path = libFileSearch("images", "up.xpm");
58         moveUpTB->setIcon(QIcon(toqstr(icon_path.absFilename())));
59         icon_path = libFileSearch("images", "down.xpm");
60         moveDownTB->setIcon(QIcon(toqstr(icon_path.absFilename())));
61         icon_path = libFileSearch("images", "reload.xpm");
62         updateTB->setIcon(QIcon(toqstr(icon_path.absFilename())));
63                 
64         // avoid flickering
65         tocTV->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
66
67         tocTV->showColumn(0);
68
69         // hide the pointless QHeader for now
70         // in the future, new columns may appear
71         // like labels, bookmarks, etc...
72         // tocTV->header()->hide();
73         tocTV->header()->setVisible(false);
74
75         // Only one item selected at a time.
76         tocTV->setSelectionMode(QAbstractItemView::SingleSelection);
77 }
78
79
80 void TocWidget::selectionChanged(const QModelIndex & current,
81                                   const QModelIndex & /*previous*/)
82 {
83         LYXERR(Debug::GUI)
84                 << "selectionChanged index " << current.row()
85                 << ", " << current.column()
86                 << endl;
87
88         form_->goTo(typeCO->currentIndex(), current);
89 }
90
91
92 void TocWidget::on_updateTB_clicked()
93 {
94         // The backend update can take some time so we disable
95         // the controls while waiting.
96         enableControls(false);
97         form_->updateBackend();
98 }
99
100 /* FIXME (Ugras 17/11/06):
101 I have implemented a getIndexDepth function to get the model indices. In my
102 opinion, somebody should derive a new qvariant class for tocModelItem
103 which saves the string data and depth information. that will save the
104 depth calculation.
105 */
106 int TocWidget::getIndexDepth(QModelIndex const & index, int depth)
107 {
108         ++depth;
109         return (index.parent() ==
110                 QModelIndex())? depth : getIndexDepth(index.parent(),depth);
111 }
112
113
114 void TocWidget::on_depthSL_valueChanged(int depth)
115 {
116         if (depth == depth_)
117                 return;
118         setTreeDepth(depth);
119 }
120
121
122 void TocWidget::setTreeDepth(int depth)
123 {
124         depth_ = depth;
125
126         // expanding and then collapsing is probably better, 
127         // but my qt 4.1.2 doesn't have expandAll()..
128         //tocTV->expandAll(); 
129         QModelIndexList indices = tocTV->model()->match(
130                 tocTV->model()->index(0,0),
131                 Qt::DisplayRole, "*", -1, 
132                 Qt::MatchWildcard|Qt::MatchRecursive);
133         
134         int size = indices.size();
135         for (int i = 0; i < size; i++) {
136                 QModelIndex index = indices[i];
137                 if (getIndexDepth(index) < depth_) 
138                         tocTV->expand(index); 
139                 else
140                         tocTV->collapse(index); 
141         }
142 }
143
144 void TocWidget::on_typeCO_currentIndexChanged(int value)
145 {
146         setTocModel(value);
147 }
148
149
150 void TocWidget::on_moveUpTB_clicked()
151 {
152         enableControls(false);
153         QModelIndexList const & list = tocTV->selectionModel()->selectedIndexes();
154         if (!list.isEmpty()) {
155                 enableControls(false);
156                 form_->goTo(typeCO->currentIndex(), list[0]);
157                 form_->outlineUp();
158                 enableControls(true);
159         }
160 }
161
162
163 void TocWidget::on_moveDownTB_clicked()
164 {
165         enableControls(false);
166         QModelIndexList const & list = tocTV->selectionModel()->selectedIndexes();
167         if (!list.isEmpty()) {
168                 enableControls(false);
169                 form_->goTo(typeCO->currentIndex(), list[0]);
170                 form_->outlineDown();
171                 enableControls(true);
172         }
173 }
174
175
176 void TocWidget::on_moveInTB_clicked()
177 {
178         enableControls(false);
179         QModelIndexList const & list = tocTV->selectionModel()->selectedIndexes();
180         if (!list.isEmpty()) {
181                 enableControls(false);
182                 form_->goTo(typeCO->currentIndex(), list[0]);
183                 form_->outlineIn();
184                 enableControls(true);
185         }
186 }
187
188
189 void TocWidget::on_moveOutTB_clicked()
190 {
191         QModelIndexList const & list = tocTV->selectionModel()->selectedIndexes();
192         if (!list.isEmpty()) {
193                 enableControls(false);
194                 form_->goTo(typeCO->currentIndex(), list[0]);
195                 form_->outlineOut();
196                 enableControls(true);
197         }
198 }
199
200
201 void TocWidget::select(QModelIndex const & index)
202 {
203         if (!index.isValid()) {
204                 LYXERR(Debug::GUI)
205                         << "TocWidget::select(): QModelIndex is invalid!" << endl;
206                 return;
207         }
208
209         disconnectSelectionModel();
210         tocTV->setCurrentIndex(index);
211         tocTV->scrollTo(index);
212         reconnectSelectionModel();
213 }
214
215
216 void TocWidget::enableControls(bool enable)
217 {
218         updateTB->setEnabled(enable);
219
220         if (!form_->canOutline(typeCO->currentIndex()))
221                 enable = false;
222
223         moveUpTB->setEnabled(enable);
224         moveDownTB->setEnabled(enable);
225         moveInTB->setEnabled(enable);
226         moveOutTB->setEnabled(enable);
227
228         depthSL->setEnabled(enable);
229 }
230
231
232 void TocWidget::update()
233 {
234         LYXERR(Debug::GUI) << "In TocWidget::update()" << endl;
235         select(form_->getCurrentIndex(typeCO->currentIndex()));
236         QWidget::update();
237 }
238
239
240 void TocWidget::updateGui()
241 {
242         vector<docstring> const & type_names = form_->typeNames();
243         if (type_names.empty()) {
244                 enableControls(false);
245                 typeCO->clear();
246                 tocTV->setModel(new QStandardItemModel);
247                 tocTV->setEditTriggers(QAbstractItemView::NoEditTriggers);
248                 return;
249         }
250
251         QString current_text = typeCO->currentText();
252         lyxerr << "current_text " << fromqstr(current_text) << endl;
253         typeCO->blockSignals(true);
254         typeCO->clear();
255         int current_type = -1;
256         for (size_t i = 0; i != type_names.size(); ++i) {
257                 QString item = toqstr(type_names[i]);
258                 typeCO->addItem(item);
259                 if (item == current_text)
260                         current_type = i;
261         }
262         if (current_type != -1)
263                 typeCO->setCurrentIndex(current_type);
264         else
265                 typeCO->setCurrentIndex(form_->selectedType());
266         typeCO->blockSignals(false);
267
268         setTocModel(typeCO->currentIndex());
269 }
270
271
272 void TocWidget::setTocModel(size_t type)
273 {
274         bool controls_enabled = false;
275         QStandardItemModel * toc_model = form_->tocModel(type);
276         if (toc_model) {
277                 controls_enabled = toc_model->rowCount() > 0;
278                 tocTV->setModel(toc_model);
279                 tocTV->setEditTriggers(QAbstractItemView::NoEditTriggers);
280         }
281
282         enableControls(controls_enabled);
283
284         reconnectSelectionModel();
285
286         if (controls_enabled) {
287                 depthSL->setMaximum(form_->getTocDepth(type));
288                 depthSL->setValue(depth_);
289         }
290
291         LYXERR(Debug::GUI) << "In TocWidget::updateGui()" << endl;
292
293         select(form_->getCurrentIndex(typeCO->currentIndex()));
294
295         if (toc_model) {
296                 LYXERR(Debug::GUI)
297                 << "form_->tocModel()->rowCount " 
298                         << toc_model->rowCount()
299                         << "\nform_->tocModel()->columnCount "
300                         << toc_model->columnCount()
301                         << endl;
302         }
303 }
304
305
306 void TocWidget::reconnectSelectionModel()
307 {
308         connect(tocTV->selectionModel(),
309                 SIGNAL(currentChanged(const QModelIndex &,
310                        const QModelIndex &)),
311                 this,
312                 SLOT(selectionChanged(const QModelIndex &,
313                      const QModelIndex &)));
314 }
315
316 void TocWidget::disconnectSelectionModel()
317 {
318         disconnect(tocTV->selectionModel(),
319                    SIGNAL(currentChanged(const QModelIndex &, 
320                           const QModelIndex &)),
321                    this,
322                    SLOT(selectionChanged(const QModelIndex &,
323                         const QModelIndex &)));
324 }
325
326 } // namespace frontend
327 } // namespace lyx
328
329 #include "TocWidget_moc.cpp"