]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiRef.cpp
Fix bug 9798.
[lyx.git] / src / frontends / qt4 / GuiRef.cpp
1 /**
2  * \file GuiRef.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 Jürgen Spitzmüller
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "GuiRef.h"
15
16 #include "GuiApplication.h"
17
18 #include "Buffer.h"
19 #include "BufferParams.h"
20 #include "BufferList.h"
21 #include "BufferView.h"
22 #include "Cursor.h"
23 #include "FuncRequest.h"
24
25 #include "qt_helpers.h"
26
27 #include "insets/InsetRef.h"
28
29 #include "support/FileName.h"
30 #include "support/FileNameList.h"
31 #include "support/filetools.h" // makeAbsPath, makeDisplayPath
32
33 #include <QLineEdit>
34 #include <QCheckBox>
35 #include <QTreeWidget>
36 #include <QTreeWidgetItem>
37 #include <QPushButton>
38 #include <QToolTip>
39 #include <QCloseEvent>
40 #include <QHeaderView>
41
42 using namespace std;
43 using namespace lyx::support;
44
45 namespace lyx {
46 namespace frontend {
47
48 GuiRef::GuiRef(GuiView & lv)
49         : GuiDialog(lv, "ref", qt_("Cross-reference")),
50           params_(insetCode("ref"))
51 {
52         setupUi(this);
53
54         at_ref_ = false;
55
56         // The filter bar
57         filter_ = new FancyLineEdit(this);
58         filter_->setButtonPixmap(FancyLineEdit::Right, getPixmap("images/", "editclear", "svgz,png"));
59         filter_->setButtonVisible(FancyLineEdit::Right, true);
60         filter_->setButtonToolTip(FancyLineEdit::Right, qt_("Clear text"));
61         filter_->setAutoHideButton(FancyLineEdit::Right, true);
62         filter_->setPlaceholderText(qt_("All available labels"));
63         filter_->setToolTip(qt_("Enter string to filter the list of available labels"));
64 #if (QT_VERSION < 0x050000)
65         connect(filter_, SIGNAL(downPressed()),
66                 refsTW, SLOT(setFocus()));
67 #else
68         connect(filter_, &FancyLineEdit::downPressed,
69                 refsTW, [=](){ focusAndHighlight(refsTW); });
70 #endif
71
72         filterBarL->addWidget(filter_, 0);
73         findKeysLA->setBuddy(filter_);
74
75         sortingCO->addItem(qt_("By Occurrence"), "unsorted");
76         sortingCO->addItem(qt_("Alphabetically (Case-Insensitive)"), "nocase");
77         sortingCO->addItem(qt_("Alphabetically (Case-Sensitive)"), "case");
78
79         buttonBox->button(QDialogButtonBox::Reset)->setText(qt_("&Update"));
80         buttonBox->button(QDialogButtonBox::Reset)->setToolTip(qt_("Update the label list"));
81
82         refsTW->setColumnCount(1);
83         refsTW->header()->setVisible(false);
84
85         connect(this, SIGNAL(rejected()), this, SLOT(dialogRejected()));
86
87         connect(typeCO, SIGNAL(activated(int)),
88                 this, SLOT(changed_adaptor()));
89         connect(referenceED, SIGNAL(textChanged(QString)),
90                 this, SLOT(refTextChanged(QString)));
91         connect(referenceED, SIGNAL(textChanged(QString)),
92                 this, SLOT(changed_adaptor()));
93         connect(filter_, SIGNAL(textEdited(QString)),
94                 this, SLOT(filterLabels()));
95         connect(filter_, SIGNAL(rightButtonClicked()),
96                 this, SLOT(resetFilter()));
97         connect(csFindCB, SIGNAL(clicked()),
98                 this, SLOT(filterLabels()));
99         connect(nameED, SIGNAL(textChanged(QString)),
100                 this, SLOT(changed_adaptor()));
101         connect(refsTW, SIGNAL(itemClicked(QTreeWidgetItem *, int)),
102                 this, SLOT(refHighlighted(QTreeWidgetItem *)));
103         connect(refsTW, SIGNAL(itemSelectionChanged()),
104                 this, SLOT(selectionChanged()));
105         connect(refsTW, SIGNAL(itemDoubleClicked(QTreeWidgetItem *, int)),
106                 this, SLOT(refSelected(QTreeWidgetItem *)));
107         connect(sortingCO, SIGNAL(activated(int)),
108                 this, SLOT(sortToggled()));
109         connect(groupCB, SIGNAL(clicked()),
110                 this, SLOT(groupToggled()));
111         connect(gotoPB, SIGNAL(clicked()),
112                 this, SLOT(gotoClicked()));
113         connect(bufferCO, SIGNAL(activated(int)),
114                 this, SLOT(updateClicked()));
115         connect(pluralCB, SIGNAL(clicked()),
116                 this, SLOT(changed_adaptor()));
117         connect(capsCB, SIGNAL(clicked()),
118                 this, SLOT(changed_adaptor()));
119         connect(noprefixCB, SIGNAL(clicked()),
120                 this, SLOT(changed_adaptor()));
121
122         enableBoxes();
123
124         bc().setPolicy(ButtonPolicy::NoRepeatedApplyReadOnlyPolicy);
125         bc().setOK(buttonBox->button(QDialogButtonBox::Ok));
126         bc().setApply(buttonBox->button(QDialogButtonBox::Apply));
127         bc().setCancel(buttonBox->button(QDialogButtonBox::Cancel));
128         bc().addReadOnly(typeCO);
129
130         restored_buffer_ = -1;
131         active_buffer_ = -1;
132
133         setFocusProxy(filter_);
134 }
135
136
137 void GuiRef::enableView(bool enable)
138 {
139         if (!enable)
140                 // In the opposite case, updateContents() will be called anyway.
141                 updateContents();
142         GuiDialog::enableView(enable);
143 }
144
145
146 void GuiRef::enableBoxes()
147 {
148         bool const isFormatted =
149             (InsetRef::getName(typeCO->currentIndex()) == "formatted");
150         bool const isLabelOnly =
151             (InsetRef::getName(typeCO->currentIndex()) == "labelonly");
152         bool const usingRefStyle = buffer().params().use_refstyle;
153         pluralCB->setEnabled(isFormatted && usingRefStyle);
154         capsCB->setEnabled(isFormatted && usingRefStyle);
155         noprefixCB->setEnabled(isLabelOnly);
156 }
157
158
159 void GuiRef::changed_adaptor()
160 {
161         changed();
162         enableBoxes();
163 }
164
165
166 void GuiRef::gotoClicked()
167 {
168         // By setting last_reference_, we ensure that the reference
169         // to which we are going (or from which we are returning) is
170         // restored in the dialog. It's a bit of a hack, but it works,
171         // and no-one seems to have any better idea.
172         bool const toggled =
173                 last_reference_.isEmpty() || last_reference_.isNull();
174         if (toggled)
175                 last_reference_ = referenceED->text();
176         gotoRef();
177         if (toggled)
178                 last_reference_.clear();
179 }
180
181
182 void GuiRef::selectionChanged()
183 {
184         if (isBufferReadonly())
185                 return;
186
187         QList<QTreeWidgetItem *> selections = refsTW->selectedItems();
188         if (selections.isEmpty())
189                 return;
190         QTreeWidgetItem * sel = selections.first();
191         refHighlighted(sel);
192         return;
193 }
194
195
196 void GuiRef::refHighlighted(QTreeWidgetItem * sel)
197 {
198         if (sel->childCount() > 0) {
199                 sel->setExpanded(true);
200                 return;
201         }
202
203 /*      int const cur_item = refsTW->currentRow();
204         bool const cur_item_selected = cur_item >= 0 ?
205                 refsLB->isSelected(cur_item) : false;*/
206         bool const cur_item_selected = refsTW->isItemSelected(sel);
207
208         if (cur_item_selected)
209                 referenceED->setText(sel->text(0));
210
211         if (at_ref_)
212                 gotoRef();
213         gotoPB->setEnabled(true);
214         if (typeAllowed() && !isBufferReadonly())
215                 typeCO->setEnabled(true);
216         nameED->setHidden(!nameAllowed());
217         nameL->setHidden(!nameAllowed());
218 }
219
220
221 void GuiRef::refTextChanged(QString const & str)
222 {
223         gotoPB->setEnabled(!str.isEmpty());
224         typeCO->setEnabled(!str.isEmpty());
225         typeLA->setEnabled(!str.isEmpty());
226 }
227
228
229 void GuiRef::refSelected(QTreeWidgetItem * sel)
230 {
231         if (isBufferReadonly())
232                 return;
233
234         if (sel->childCount()) {
235                 sel->setExpanded(false);
236                 return;
237         }
238
239 /*      int const cur_item = refsTW->currentRow();
240         bool const cur_item_selected = cur_item >= 0 ?
241                 refsLB->isSelected(cur_item) : false;*/
242         bool const cur_item_selected = refsTW->isItemSelected(sel);
243
244         if (cur_item_selected)
245                 referenceED->setText(sel->text(0));
246         // <enter> or double click, inserts ref and closes dialog
247         slotOK();
248 }
249
250
251 void GuiRef::sortToggled()
252 {
253         redoRefs();
254 }
255
256
257 void GuiRef::groupToggled()
258 {
259         redoRefs();
260 }
261
262
263 void GuiRef::on_buttonBox_clicked(QAbstractButton * button)
264 {
265         switch (buttonBox->standardButton(button)) {
266         case QDialogButtonBox::Ok:
267                 slotOK();
268                 break;
269         case QDialogButtonBox::Apply:
270                 slotApply();
271                 break;
272         case QDialogButtonBox::Cancel:
273                 slotClose();
274                 resetDialog();
275                 break;
276         case QDialogButtonBox::Reset:
277                 updateClicked();
278                 break;
279         default:
280                 break;
281         }
282 }
283
284
285 void GuiRef::updateClicked()
286 {
287         updateRefs();
288 }
289
290
291 void GuiRef::dialogRejected()
292 {
293         resetDialog();
294         // We have to do this manually, instead of calling slotClose(), because
295         // the dialog has already been made invisible before rejected() triggers.
296         Dialog::disconnect();
297 }
298
299
300 void GuiRef::resetDialog()
301 {
302         at_ref_ = false;
303         setGotoRef();
304 }
305
306
307 void GuiRef::closeEvent(QCloseEvent * e)
308 {
309         slotClose();
310         resetDialog();
311         e->accept();
312 }
313
314
315 void GuiRef::updateContents()
316 {
317         QString const orig_type =
318                 typeCO->itemData(typeCO->currentIndex()).toString();
319
320         referenceED->clear();
321         nameED->clear();
322         typeCO->clear();
323
324         // FIXME Bring InsetMathRef on par with InsetRef
325         // (see #9798)
326         typeCO->addItem(qt_("<reference>"), "ref");
327         typeCO->addItem(qt_("(<reference>)"), "eqref");
328         typeCO->addItem(qt_("<page>"), "pageref");
329         typeCO->addItem(qt_("on page <page>"), "vpageref");
330         typeCO->addItem(qt_("<reference> on page <page>"), "vref");
331         typeCO->addItem(qt_("Textual reference"), "nameref");
332         if (bufferview()->cursor().inTexted()) {
333                 typeCO->addItem(qt_("Formatted reference"), "formatted");
334                 typeCO->addItem(qt_("Label only"), "labelonly");
335         } else
336                 typeCO->addItem(qt_("Formatted reference"), "prettyref");
337
338         referenceED->setText(toqstr(params_["reference"]));
339         nameED->setText(toqstr(params_["name"]));
340         nameED->setHidden(!nameAllowed());
341         nameL->setHidden(!nameAllowed());
342
343         // restore type settings for new insets
344         bool const new_inset = params_["reference"].empty();
345         if (new_inset) {
346                 int index = typeCO->findData(orig_type);
347                 if (index == -1)
348                         index = 0;
349                 typeCO->setCurrentIndex(index);
350         }
351         else
352                 typeCO->setCurrentIndex(
353                         typeCO->findData(toqstr(params_.getCmdName())));
354         typeCO->setEnabled(typeAllowed() && !isBufferReadonly());
355         if (!typeAllowed())
356                 typeCO->setCurrentIndex(0);
357
358         pluralCB->setChecked(params_["plural"] == "true");
359         capsCB->setChecked(params_["caps"] == "true");
360         noprefixCB->setChecked(params_["noprefix"] == "true");
361
362         // insert buffer list
363         bufferCO->clear();
364         FileNameList const buffers(theBufferList().fileNames());
365         for (FileNameList::const_iterator it = buffers.begin();
366              it != buffers.end(); ++it) {
367                 bufferCO->addItem(toqstr(makeDisplayPath(it->absFileName())));
368         }
369
370         int const thebuffer = theBufferList().bufferNum(buffer().fileName());
371         // restore the buffer combo setting for new insets
372         if (new_inset && restored_buffer_ != -1
373             && restored_buffer_ < bufferCO->count() && thebuffer == active_buffer_)
374                 bufferCO->setCurrentIndex(restored_buffer_);
375         else {
376                 int const num = theBufferList().bufferNum(buffer().fileName());
377                 bufferCO->setCurrentIndex(num);
378                 if (thebuffer != active_buffer_)
379                         restored_buffer_ = num;
380         }
381         active_buffer_ = thebuffer;
382
383         updateRefs();
384         enableBoxes();
385         // Activate OK/Apply buttons if the users inserts a new ref
386         // and we have a valid pre-setting.
387         bc().setValid(isValid() && new_inset);
388 }
389
390
391 void GuiRef::applyView()
392 {
393         last_reference_ = referenceED->text();
394
395         params_.setCmdName(fromqstr(typeCO->itemData(typeCO->currentIndex()).toString()));
396         params_["reference"] = qstring_to_ucs4(last_reference_);
397         params_["name"] = qstring_to_ucs4(nameED->text());
398         params_["plural"] = pluralCB->isChecked() ?
399               from_ascii("true") : from_ascii("false");
400         params_["caps"] = capsCB->isChecked() ?
401               from_ascii("true") : from_ascii("false");
402         params_["noprefix"] = noprefixCB->isChecked() ?
403               from_ascii("true") : from_ascii("false");
404         restored_buffer_ = bufferCO->currentIndex();
405 }
406
407
408 bool GuiRef::nameAllowed()
409 {
410         KernelDocType const doc_type = docType();
411         return doc_type != LATEX && doc_type != LITERATE;
412 }
413
414
415 bool GuiRef::typeAllowed()
416 {
417         return docType() != DOCBOOK;
418 }
419
420
421 void GuiRef::setGoBack()
422 {
423         gotoPB->setText(qt_("&Go Back"));
424         gotoPB->setToolTip(qt_("Jump back to the original cursor location"));
425 }
426
427
428 void GuiRef::setGotoRef()
429 {
430         gotoPB->setText(qt_("&Go to Label"));
431         gotoPB->setToolTip(qt_("Jump to the selected label"));
432 }
433
434
435 void GuiRef::gotoRef()
436 {
437         string ref = fromqstr(referenceED->text());
438
439         if (at_ref_) {
440                 // go back
441                 setGotoRef();
442                 gotoBookmark();
443         } else {
444                 // go to the ref
445                 setGoBack();
446                 gotoRef(ref);
447         }
448         at_ref_ = !at_ref_;
449 }
450
451 inline bool caseInsensitiveLessThan(QString const & s1, QString const & s2)
452 {
453         return s1.toLower() < s2.toLower();
454 }
455
456
457 void GuiRef::redoRefs()
458 {
459         // Prevent these widgets from emitting any signals whilst
460         // we modify their state.
461         refsTW->blockSignals(true);
462         referenceED->blockSignals(true);
463         refsTW->setUpdatesEnabled(false);
464
465         refsTW->clear();
466
467         // need this because Qt will send a highlight() here for
468         // the first item inserted
469         QString const oldSelection(referenceED->text());
470
471         QStringList refsStrings;
472         QStringList refsCategories;
473         vector<docstring>::const_iterator iter;
474         bool noprefix = false;
475         for (iter = refs_.begin(); iter != refs_.end(); ++iter) {
476                 QString const lab = toqstr(*iter);
477                 refsStrings.append(lab);
478                 if (groupCB->isChecked()) {
479                         if (lab.contains(":")) {
480                                 QString const pref = lab.split(':')[0];
481                                 if (!refsCategories.contains(pref)) {
482                                         if (!pref.isEmpty())
483                                                 refsCategories.append(pref);
484                                         else
485                                                 noprefix = true;
486                                 }
487                         }
488                         else
489                                 noprefix = true;
490                 }
491         }
492         // sort categories case-intensively
493         qSort(refsCategories.begin(), refsCategories.end(),
494               caseInsensitiveLessThan /*defined above*/);
495         if (noprefix)
496                 refsCategories.insert(0, qt_("<No prefix>"));
497
498         QString const sort = sortingCO->isEnabled() ?
499                                 sortingCO->itemData(sortingCO->currentIndex()).toString()
500                                 : QString();
501         if (sort == "nocase")
502                 qSort(refsStrings.begin(), refsStrings.end(),
503                       caseInsensitiveLessThan /*defined above*/);
504         else if (sort == "case")
505                 qSort(refsStrings.begin(), refsStrings.end());
506
507         if (groupCB->isChecked()) {
508                 QList<QTreeWidgetItem *> refsCats;
509                 for (int i = 0; i < refsCategories.size(); ++i) {
510                         QString const cat = refsCategories.at(i);
511                         QTreeWidgetItem * item = new QTreeWidgetItem(refsTW);
512                         item->setText(0, cat);
513                         for (int j = 0; j < refsStrings.size(); ++j) {
514                                 QString const ref = refsStrings.at(j);
515                                 if ((ref.startsWith(cat + QString(":")))
516                                     || (cat == qt_("<No prefix>")
517                                        && (!ref.mid(1).contains(":") || ref.left(1).contains(":")))) {
518                                                 QTreeWidgetItem * child =
519                                                         new QTreeWidgetItem(item);
520                                                 child->setText(0, ref);
521                                                 item->addChild(child);
522                                 }
523                         }
524                         refsCats.append(item);
525                 }
526                 refsTW->addTopLevelItems(refsCats);
527         } else {
528                 QList<QTreeWidgetItem *> refsItems;
529                 for (int i = 0; i < refsStrings.size(); ++i) {
530                         QTreeWidgetItem * item = new QTreeWidgetItem(refsTW);
531                         item->setText(0, refsStrings.at(i));
532                         refsItems.append(item);
533                 }
534                 refsTW->addTopLevelItems(refsItems);
535         }
536
537         // restore the last selection or, for new insets, highlight
538         // the previous selection
539         if (!oldSelection.isEmpty() || !last_reference_.isEmpty()) {
540                 bool const newInset = oldSelection.isEmpty();
541                 QString textToFind = newInset ? last_reference_ : oldSelection;
542                 referenceED->setText(textToFind);
543                 last_reference_.clear();
544                 QTreeWidgetItemIterator it(refsTW);
545                 while (*it) {
546                         if ((*it)->text(0) == textToFind) {
547                                 refsTW->setCurrentItem(*it);
548                                 refsTW->setItemSelected(*it, true);
549                                 //Make sure selected item is visible
550                                 refsTW->scrollToItem(*it);
551                                 last_reference_ = textToFind;
552                                 break;
553                         }
554                         ++it;
555                 }
556         }
557         refsTW->setUpdatesEnabled(true);
558         refsTW->update();
559
560         // redo filter
561         filterLabels();
562
563         // Re-activate the emission of signals by these widgets.
564         refsTW->blockSignals(false);
565         referenceED->blockSignals(false);
566
567         gotoPB->setEnabled(!referenceED->text().isEmpty());
568         typeCO->setEnabled(!referenceED->text().isEmpty());
569         typeLA->setEnabled(!referenceED->text().isEmpty());
570 }
571
572
573 void GuiRef::updateRefs()
574 {
575         refs_.clear();
576         int const the_buffer = bufferCO->currentIndex();
577         if (the_buffer != -1) {
578                 FileNameList const names(theBufferList().fileNames());
579                 FileName const & name = names[the_buffer];
580                 Buffer const * buf = theBufferList().getBuffer(name);
581                 buf->getLabelList(refs_);
582         }
583         sortingCO->setEnabled(!refs_.empty());
584         refsTW->setEnabled(!refs_.empty());
585         groupCB->setEnabled(!refs_.empty());
586         redoRefs();
587 }
588
589
590 bool GuiRef::isValid()
591 {
592         return !referenceED->text().isEmpty();
593 }
594
595
596 void GuiRef::gotoRef(string const & ref)
597 {
598         dispatch(FuncRequest(LFUN_BOOKMARK_SAVE, "0"));
599         dispatch(FuncRequest(LFUN_LABEL_GOTO, ref));
600 }
601
602
603 void GuiRef::gotoBookmark()
604 {
605         dispatch(FuncRequest(LFUN_BOOKMARK_GOTO, "0"));
606 }
607
608
609 void GuiRef::filterLabels()
610 {
611         Qt::CaseSensitivity cs = csFindCB->isChecked() ?
612                 Qt::CaseSensitive : Qt::CaseInsensitive;
613         QTreeWidgetItemIterator it(refsTW);
614         while (*it) {
615                 (*it)->setHidden(
616                         (*it)->childCount() == 0
617                         && !(*it)->text(0).contains(filter_->text(), cs)
618                 );
619                 ++it;
620         }
621 }
622
623
624 void GuiRef::resetFilter()
625 {
626         filter_->setText(QString());
627         filterLabels();
628 }
629
630
631 bool GuiRef::initialiseParams(std::string const & sdata)
632 {
633         InsetCommand::string2params(sdata, params_);
634         return true;
635 }
636
637
638 void GuiRef::dispatchParams()
639 {
640         std::string const lfun = InsetCommand::params2string(params_);
641         dispatch(FuncRequest(getLfun(), lfun));
642 }
643
644
645
646 Dialog * createGuiRef(GuiView & lv) { return new GuiRef(lv); }
647
648
649 } // namespace frontend
650 } // namespace lyx
651
652 #include "moc_GuiRef.cpp"