]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiCitation.cpp
b294fd8a2892cd89bea00295b8d2ddaf605fb5e2
[lyx.git] / src / frontends / qt4 / GuiCitation.cpp
1
2 /**
3  * \file GuiCitation.cpp
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Angus Leeming
8  * \author Kalle Dalheimer
9  * \author Abdelrazak Younes
10  * \author Richard Heck
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #include <config.h>
16
17 #include "GuiCitation.h"
18
19 #include "GuiApplication.h"
20 #include "GuiSelectionManager.h"
21 #include "LyXToolBox.h"
22 #include "qt_helpers.h"
23
24 #include "Buffer.h"
25 #include "BufferView.h"
26 #include "BiblioInfo.h"
27 #include "BufferParams.h"
28 #include "FuncRequest.h"
29
30 #include "insets/InsetCommand.h"
31
32 #include "support/debug.h"
33 #include "support/docstring.h"
34 #include "support/gettext.h"
35 #include "support/lstrings.h"
36
37 #include <QCloseEvent>
38 #include <QMenu>
39 #include <QSettings>
40 #include <QShowEvent>
41 #include <QVariant>
42
43 #include <vector>
44 #include <string>
45
46 #undef KeyPress
47
48 #include "support/regex.h"
49
50 #include <algorithm>
51 #include <string>
52 #include <vector>
53
54 using namespace std;
55 using namespace lyx::support;
56
57 namespace lyx {
58 namespace frontend {
59
60 // FIXME THREAD
61 // I am guessing that it would not hurt to make these private members.
62 static vector<string> citeCmds_;
63 static vector<CitationStyle> citeStyles_;
64
65
66 template<typename String>
67 static QStringList to_qstring_list(vector<String> const & v)
68 {
69         QStringList qlist;
70
71         for (size_t i = 0; i != v.size(); ++i) {
72                 if (v[i].empty())
73                         continue;
74                 qlist.append(lyx::toqstr(v[i]));
75         }
76         return qlist;
77 }
78
79
80 static vector<lyx::docstring> to_docstring_vector(QStringList const & qlist)
81 {
82         vector<lyx::docstring> v;
83         for (int i = 0; i != qlist.size(); ++i) {
84                 if (qlist[i].isEmpty())
85                         continue;
86                 v.push_back(lyx::qstring_to_ucs4(qlist[i]));
87         }
88         return v;
89 }
90
91
92 GuiCitation::GuiCitation(GuiView & lv)
93         : DialogView(lv, "citation", qt_("Citation")),
94           style_(0), params_(insetCode("citation"))
95 {
96         setupUi(this);
97
98         // The filter bar
99         filter_ = new FancyLineEdit(this);
100 #if QT_VERSION >= 0x040600
101         filter_->setButtonPixmap(FancyLineEdit::Right, getPixmap("images/", "editclear", "svgz,png"));
102         filter_->setButtonVisible(FancyLineEdit::Right, true);
103         filter_->setButtonToolTip(FancyLineEdit::Right, qt_("Clear text"));
104         filter_->setAutoHideButton(FancyLineEdit::Right, true);
105 #endif
106 #if QT_VERSION >= 0x040700
107         filter_->setPlaceholderText(qt_("Filter available"));
108 #endif
109
110         filterBarL->addWidget(filter_, 0);
111         findKeysLA->setBuddy(filter_);
112
113         // Add search options as button menu
114         regexp_ = new QAction(qt_("Regular e&xpression"), this);
115         regexp_->setCheckable(true);
116         casesense_ = new QAction(qt_("Case se&nsitive"), this);
117         casesense_->setCheckable(true);
118         instant_ = new QAction(qt_("Search as you &type"), this);
119         instant_->setCheckable(true);
120
121         QMenu * searchOpts = new QMenu(this);
122         searchOpts->addAction(regexp_);
123         searchOpts->addAction(casesense_);
124         searchOpts->addAction(instant_);
125         searchOptionsPB->setMenu(searchOpts);
126
127         connect(citationStyleCO, SIGNAL(activated(int)),
128                 this, SLOT(on_citationStyleCO_currentIndexChanged(int)));
129         connect(fulllistCB, SIGNAL(clicked()),
130                 this, SLOT(changed()));
131         connect(forceuppercaseCB, SIGNAL(clicked()),
132                 this, SLOT(changed()));
133         connect(textBeforeED, SIGNAL(textChanged(QString)),
134                 this, SLOT(updateStyles()));
135         connect(textAfterED, SIGNAL(textChanged(QString)),
136                 this, SLOT(updateStyles()));
137         connect(textBeforeED, SIGNAL(returnPressed()),
138                 this, SLOT(on_okPB_clicked()));
139         connect(textAfterED, SIGNAL(returnPressed()),
140                 this, SLOT(on_okPB_clicked()));
141
142         selectionManager = new GuiSelectionManager(availableLV, selectedLV,
143                         addPB, deletePB, upPB, downPB, &available_model_, &selected_model_);
144         connect(selectionManager, SIGNAL(selectionChanged()),
145                 this, SLOT(setCitedKeys()));
146         connect(selectionManager, SIGNAL(updateHook()),
147                 this, SLOT(updateControls()));
148         connect(selectionManager, SIGNAL(okHook()),
149                 this, SLOT(on_okPB_clicked()));
150
151         connect(filter_, SIGNAL(rightButtonClicked()),
152                 this, SLOT(resetFilter()));
153         connect(filter_, SIGNAL(textEdited(QString)),
154                 this, SLOT(filterChanged(QString)));
155         connect(filter_, SIGNAL(returnPressed()),
156                 this, SLOT(filterPressed()));
157         connect(regexp_, SIGNAL(triggered()),
158                 this, SLOT(regexChanged()));
159         connect(casesense_, SIGNAL(triggered()),
160                 this, SLOT(caseChanged()));
161         connect(instant_, SIGNAL(triggered(bool)),
162                 this, SLOT(instantChanged(bool)));
163
164         setFocusProxy(filter_);
165 }
166
167
168 GuiCitation::~GuiCitation()
169 {
170         delete selectionManager;
171 }
172
173
174 void GuiCitation::closeEvent(QCloseEvent * e)
175 {
176         clearSelection();
177         DialogView::closeEvent(e);
178 }
179
180
181 void GuiCitation::applyView()
182 {
183         int const choice = max(0, citationStyleCO->currentIndex());
184         style_ = choice;
185         bool const full  = fulllistCB->isChecked();
186         bool const force = forceuppercaseCB->isChecked();
187
188         QString const before = textBeforeED->text();
189         QString const after = textAfterED->text();
190
191         applyParams(choice, full, force, before, after);
192 }
193
194
195 void GuiCitation::showEvent(QShowEvent * e)
196 {
197         filter_->clear();
198         availableLV->setFocus();
199         DialogView::showEvent(e);
200 }
201
202
203 void GuiCitation::on_okPB_clicked()
204 {
205         applyView();
206         clearSelection();
207         hide();
208 }
209
210
211 void GuiCitation::on_cancelPB_clicked()
212 {
213         clearSelection();
214         hide();
215 }
216
217
218 void GuiCitation::on_applyPB_clicked()
219 {
220         applyView();
221 }
222
223
224 void GuiCitation::on_restorePB_clicked()
225 {
226         init();
227         updateFilterHint();
228 }
229
230
231 void GuiCitation::updateControls()
232 {
233         BiblioInfo const & bi = bibInfo();
234         updateControls(bi);
235 }
236
237
238 // The main point of separating this out is that the fill*() methods
239 // called in update() do not need to be called for INTERNAL updates,
240 // such as when addPB is pressed, as the list of fields, entries, etc,
241 // will not have changed.
242 void GuiCitation::updateControls(BiblioInfo const & bi)
243 {
244         QModelIndex idx = selectionManager->getSelectedIndex();
245         updateInfo(bi, idx);
246         selectionManager->update();
247 }
248
249
250 void GuiCitation::updateFormatting(CitationStyle currentStyle)
251 {
252         bool const force = currentStyle.forceUpperCase;
253         bool const full = currentStyle.fullAuthorList &&
254                 documentBuffer().params().fullAuthorList();
255         bool const textbefore = currentStyle.textBefore;
256         bool const textafter = currentStyle.textAfter;
257
258         bool const haveSelection =
259                 selectedLV->model()->rowCount() > 0;
260
261         forceuppercaseCB->setEnabled(force && haveSelection);
262         fulllistCB->setEnabled(full && haveSelection);
263         textBeforeED->setEnabled(textbefore && haveSelection);
264         textBeforeLA->setEnabled(textbefore && haveSelection);
265         textAfterED->setEnabled(textafter && haveSelection);
266         textAfterLA->setEnabled(textafter && haveSelection);
267         citationStyleCO->setEnabled(haveSelection);
268         citationStyleLA->setEnabled(haveSelection);
269 }
270
271
272 // Update the styles for the style combo, citationStyleCO, and mark the
273 // settings as changed. Called upon changing the cited keys (including
274 // merely reordering the keys) or editing the text before/after fields.
275 void GuiCitation::updateStyles()
276 {
277         BiblioInfo const & bi = bibInfo();
278         updateStyles(bi);
279         changed();
280 }
281
282
283 // Update the styles for the style combo, citationStyleCO.
284 void GuiCitation::updateStyles(BiblioInfo const & bi)
285 {
286         QStringList selected_keys = selected_model_.stringList();
287         int curr = selectedLV->model()->rowCount() - 1;
288
289         if (curr < 0 || selected_keys.empty()) {
290                 citationStyleCO->clear();
291                 citationStyleCO->setEnabled(false);
292                 citationStyleLA->setEnabled(false);
293                 return;
294         }
295
296         static const size_t max_length = 80;
297         QStringList sty = citationStyles(bi, max_length);
298
299         if (sty.isEmpty()) {
300                 // some error
301                 citationStyleCO->setEnabled(false);
302                 citationStyleLA->setEnabled(false);
303                 citationStyleCO->clear();
304                 return;
305         }
306
307         citationStyleCO->blockSignals(true);
308
309         // save old index
310         int const oldIndex = citationStyleCO->currentIndex();
311         citationStyleCO->clear();
312         citationStyleCO->insertItems(0, sty);
313         citationStyleCO->setEnabled(true);
314         citationStyleLA->setEnabled(true);
315         // restore old index
316         if (oldIndex != -1 && oldIndex < citationStyleCO->count())
317                 citationStyleCO->setCurrentIndex(oldIndex);
318
319         citationStyleCO->blockSignals(false);
320 }
321
322
323 void GuiCitation::fillFields(BiblioInfo const & bi)
324 {
325         fieldsCO->blockSignals(true);
326         int const oldIndex = fieldsCO->currentIndex();
327         fieldsCO->clear();
328         QStringList const fields = to_qstring_list(bi.getFields());
329         fieldsCO->insertItem(0, qt_("All fields"));
330         fieldsCO->insertItem(1, qt_("Keys"));
331         fieldsCO->insertItems(2, fields);
332         if (oldIndex != -1 && oldIndex < fieldsCO->count())
333                 fieldsCO->setCurrentIndex(oldIndex);
334         fieldsCO->blockSignals(false);
335 }
336
337
338 void GuiCitation::fillEntries(BiblioInfo const & bi)
339 {
340         entriesCO->blockSignals(true);
341         int const oldIndex = entriesCO->currentIndex();
342         entriesCO->clear();
343         QStringList const entries = to_qstring_list(bi.getEntries());
344         entriesCO->insertItem(0, qt_("All entry types"));
345         entriesCO->insertItems(1, entries);
346         if (oldIndex != -1 && oldIndex < entriesCO->count())
347                 entriesCO->setCurrentIndex(oldIndex);
348         entriesCO->blockSignals(false);
349 }
350
351
352 bool GuiCitation::isSelected(QModelIndex const & idx)
353 {
354         QString const str = idx.data().toString();
355         return selected_model_.stringList().contains(str);
356 }
357
358
359 void GuiCitation::setButtons()
360 {
361         int const srows = selectedLV->model()->rowCount();
362         applyPB->setEnabled(srows > 0);
363         okPB->setEnabled(srows > 0);
364 }
365
366
367 void GuiCitation::updateInfo(BiblioInfo const & bi, QModelIndex const & idx)
368 {
369         if (!idx.isValid() || bi.empty()) {
370                 infoML->document()->clear();
371                 return;
372         }
373
374         QString const keytxt = toqstr(
375                 bi.getInfo(qstring_to_ucs4(idx.data().toString()), documentBuffer(), true));
376         infoML->document()->setHtml(keytxt);
377 }
378
379
380 void GuiCitation::findText(QString const & text, bool reset)
381 {
382         //"All Fields" and "Keys" are the first two
383         int index = fieldsCO->currentIndex() - 2;
384         BiblioInfo const & bi = bibInfo();
385         vector<docstring> const & fields = bi.getFields();
386         docstring field;
387
388         if (index <= -1 || index >= int(fields.size()))
389                 //either "All Fields" or "Keys" or an invalid value
390                 field = from_ascii("");
391         else
392                 field = fields[index];
393
394         //Was it "Keys"?
395         bool const onlyKeys = index == -1;
396
397         //"All Entry Types" is first.
398         index = entriesCO->currentIndex() - 1;
399         vector<docstring> const & entries = bi.getEntries();
400         docstring entry_type;
401         if (index < 0 || index >= int(entries.size()))
402                 entry_type = from_ascii("");
403         else
404                 entry_type = entries[index];
405
406         bool const case_sentitive = casesense_->isChecked();
407         bool const reg_exp = regexp_->isChecked();
408
409         findKey(bi, text, onlyKeys, field, entry_type,
410                        case_sentitive, reg_exp, reset);
411         //FIXME
412         //It'd be nice to save and restore the current selection in
413         //availableLV. Currently, we get an automatic reset, since the
414         //model is reset.
415
416         updateControls(bi);
417 }
418
419
420 void GuiCitation::on_fieldsCO_currentIndexChanged(int /*index*/)
421 {
422         findText(filter_->text(), true);
423 }
424
425
426 void GuiCitation::on_entriesCO_currentIndexChanged(int /*index*/)
427 {
428         findText(filter_->text(), true);
429 }
430
431
432 void GuiCitation::on_citationStyleCO_currentIndexChanged(int index)
433 {
434         if (index >= 0 && index < citationStyleCO->count()) {
435                 vector<CitationStyle> const & styles = citeStyles_;
436                 updateFormatting(styles[index]);
437                 changed();
438         }
439 }
440
441
442 void GuiCitation::filterChanged(const QString & text)
443 {
444         if (!text.isEmpty()) {
445                 if (instant_->isChecked())
446                         findText(filter_->text());
447                 return;
448         }
449         findText(filter_->text());
450         filter_->setFocus();
451 }
452
453
454 void GuiCitation::filterPressed()
455 {
456         findText(filter_->text(), true);
457 }
458
459
460 void GuiCitation::resetFilter()
461 {
462         filter_->setText(QString());
463         findText(filter_->text(), true);
464 }
465
466
467 void GuiCitation::caseChanged()
468 {
469         findText(filter_->text());
470 }
471
472
473 void GuiCitation::regexChanged()
474 {
475         findText(filter_->text());
476 }
477
478
479 void GuiCitation::updateFilterHint()
480 {
481         QString const hint = instant_->isChecked() ?
482                 qt_("Enter the text to search for") :
483                 qt_("Enter the text to search for and press Enter");
484         filter_->setToolTip(hint);
485 }
486
487
488 void GuiCitation::instantChanged(bool checked)
489 {
490         if (checked)
491                 findText(filter_->text(), true);
492
493         updateFilterHint();
494 }
495
496
497 void GuiCitation::changed()
498 {
499         setButtons();
500 }
501
502
503 void GuiCitation::applyParams(int const choice, bool full, bool force,
504         QString before, QString after)
505 {
506         if (cited_keys_.isEmpty())
507                 return;
508
509         vector<CitationStyle> const & styles = citeStyles_;
510
511         CitationStyle cs = styles[choice];
512
513         if (!cs.textBefore)
514                 before.clear();
515         if (!cs.textAfter)
516                 after.clear();
517
518         cs.forceUpperCase &= force;
519         cs.fullAuthorList &= full;
520         string const command = citationStyleToString(cs);
521
522         params_.setCmdName(command);
523         params_["key"] = qstring_to_ucs4(cited_keys_.join(","));
524         params_["before"] = qstring_to_ucs4(before);
525         params_["after"] = qstring_to_ucs4(after);
526         dispatchParams();
527 }
528
529
530 void GuiCitation::clearSelection()
531 {
532         cited_keys_.clear();
533         selected_model_.setStringList(cited_keys_);
534 }
535
536
537 void GuiCitation::init()
538 {
539         // Make the list of all available bibliography keys
540         BiblioInfo const & bi = bibInfo();
541         all_keys_ = to_qstring_list(bi.getKeys());
542         available_model_.setStringList(all_keys_);
543
544         // Ditto for the keys cited in this inset
545         QString str = toqstr(params_["key"]);
546         if (str.isEmpty())
547                 cited_keys_.clear();
548         else
549                 cited_keys_ = str.split(",");
550         selected_model_.setStringList(cited_keys_);
551
552         // Initialize the drop downs
553         fillEntries(bi);
554         fillFields(bi);
555
556         // Initialize the citation formatting
557         string const & cmd = params_.getCmdName();
558         CitationStyle const cs = citationStyleFromString(cmd);
559         forceuppercaseCB->setChecked(cs.forceUpperCase);
560         fulllistCB->setChecked(cs.fullAuthorList &&
561                 documentBuffer().params().fullAuthorList());
562         textBeforeED->setText(toqstr(params_["before"]));
563         textAfterED->setText(toqstr(params_["after"]));
564
565         // Update the interface
566         updateControls(bi);
567         updateStyles(bi);
568         if (selected_model_.rowCount()) {
569                 selectedLV->blockSignals(true);
570                 selectedLV->setFocus();
571                 QModelIndex idx = selected_model_.index(0, 0);
572                 selectedLV->selectionModel()->select(idx,
573                                 QItemSelectionModel::ClearAndSelect);
574                 selectedLV->blockSignals(false);
575
576                 // Find the citation style
577                 vector<string> const & cmds = citeCmds_;
578                 vector<string>::const_iterator cit =
579                         std::find(cmds.begin(), cmds.end(), cs.cmd);
580                 int i = 0;
581                 if (cit != cmds.end())
582                         i = int(cit - cmds.begin());
583
584                 // Set the style combo appropriately
585                 citationStyleCO->blockSignals(true);
586                 citationStyleCO->setCurrentIndex(i);
587                 citationStyleCO->blockSignals(false);
588                 updateFormatting(citeStyles_[i]);
589         } else
590                 availableLV->setFocus();
591
592         applyPB->setEnabled(false);
593         okPB->setEnabled(false);
594 }
595
596
597 void GuiCitation::findKey(BiblioInfo const & bi,
598         QString const & str, bool only_keys,
599         docstring field, docstring entry_type,
600         bool case_sensitive, bool reg_exp, bool reset)
601 {
602         // FIXME THREAD
603         // This should be moved to a class member.
604         // Used for optimisation: store last searched string.
605         static QString last_searched_string;
606         // Used to disable the above optimisation.
607         static bool last_case_sensitive;
608         static bool last_reg_exp;
609         // Reset last_searched_string in case of changed option.
610         if (last_case_sensitive != case_sensitive
611                 || last_reg_exp != reg_exp) {
612                         LYXERR(Debug::GUI, "GuiCitation::findKey: optimisation disabled!");
613                 last_searched_string.clear();
614         }
615         // save option for next search.
616         last_case_sensitive = case_sensitive;
617         last_reg_exp = reg_exp;
618
619         Qt::CaseSensitivity qtcase = case_sensitive ?
620                         Qt::CaseSensitive: Qt::CaseInsensitive;
621         QStringList keys;
622         // If new string (str) contains the last searched one...
623         if (!reset &&
624                 !last_searched_string.isEmpty() &&
625                 str.size() > 1 &&
626                 str.contains(last_searched_string, qtcase))
627                 // ... then only search within already found list.
628                 keys = available_model_.stringList();
629         else
630                 // ... else search all keys.
631                 keys = all_keys_;
632         // save searched string for next search.
633         last_searched_string = str;
634
635         QStringList result;
636
637         // First, filter by entry_type, which will be faster than
638         // what follows, so we may get to do that on less.
639         vector<docstring> keyVector = to_docstring_vector(keys);
640         filterByEntryType(bi, keyVector, entry_type);
641
642         if (str.isEmpty())
643                 result = to_qstring_list(keyVector);
644         else
645                 result = to_qstring_list(searchKeys(bi, keyVector, only_keys,
646                         qstring_to_ucs4(str), field, case_sensitive, reg_exp));
647
648         available_model_.setStringList(result);
649 }
650
651
652 QStringList GuiCitation::citationStyles(BiblioInfo const & bi, size_t max_size)
653 {
654         docstring const before = qstring_to_ucs4(textBeforeED->text());
655         docstring const after = qstring_to_ucs4(textAfterED->text());
656         vector<docstring> const keys = to_docstring_vector(cited_keys_);
657         vector<CitationStyle> styles = citeStyles_;
658         // FIXME: pass a dictionary instead of individual before, after, dialog, etc.
659         vector<docstring> ret = bi.getCiteStrings(keys, styles, documentBuffer(),
660                 before, after, from_utf8("dialog"), max_size);
661         return to_qstring_list(ret);
662 }
663
664
665 void GuiCitation::setCitedKeys()
666 {
667         cited_keys_ = selected_model_.stringList();
668         updateStyles();
669 }
670
671
672 bool GuiCitation::initialiseParams(string const & data)
673 {
674         InsetCommand::string2params(data, params_);
675         citeCmds_ = documentBuffer().params().citeCommands();
676         citeStyles_ = documentBuffer().params().citeStyles();
677         init();
678         return true;
679 }
680
681
682 void GuiCitation::clearParams()
683 {
684         params_.clear();
685 }
686
687
688 void GuiCitation::filterByEntryType(BiblioInfo const & bi,
689         vector<docstring> & keyVector, docstring entry_type)
690 {
691         if (entry_type.empty())
692                 return;
693
694         vector<docstring>::iterator it = keyVector.begin();
695         vector<docstring>::iterator end = keyVector.end();
696
697         vector<docstring> result;
698         for (; it != end; ++it) {
699                 docstring const key = *it;
700                 BiblioInfo::const_iterator cit = bi.find(key);
701                 if (cit == bi.end())
702                         continue;
703                 if (cit->second.entryType() == entry_type)
704                         result.push_back(key);
705         }
706         keyVector = result;
707 }
708
709
710 // Escape special chars.
711 // All characters are literals except: '.|*?+(){}[]^$\'
712 // These characters are literals when preceded by a "\", which is done here
713 // @todo: This function should be moved to support, and then the test in tests
714 //        should be moved there as well.
715 static docstring escape_special_chars(docstring const & expr)
716 {
717         // Search for all chars '.|*?+(){}[^$]\'
718         // Note that '[', ']', and '\' must be escaped.
719         static const lyx::regex reg("[.|*?+(){}^$\\[\\]\\\\]");
720
721         // $& is an ECMAScript format expression that expands to all
722         // of the current match
723 #ifdef LYX_USE_STD_REGEX
724         // To prefix a matched expression with a single literal backslash, we
725         // need to escape it for the C++ compiler and use:
726         // FIXME: UNICODE
727         return from_utf8(lyx::regex_replace(to_utf8(expr), reg, string("\\$&")));
728 #else
729         // A backslash in the format string starts an escape sequence in boost.
730         // Thus, to prefix a matched expression with a single literal backslash,
731         // we need to give two backslashes to the regex engine, and escape both
732         // for the C++ compiler and use:
733         // FIXME: UNICODE
734         return from_utf8(lyx::regex_replace(to_utf8(expr), reg, string("\\\\$&")));
735 #endif
736 }
737
738
739 vector<docstring> GuiCitation::searchKeys(BiblioInfo const & bi,
740         vector<docstring> const & keys_to_search, bool only_keys,
741         docstring const & search_expression, docstring field,
742         bool case_sensitive, bool regex)
743 {
744         vector<docstring> foundKeys;
745
746         docstring expr = trim(search_expression);
747         if (expr.empty())
748                 return foundKeys;
749
750         if (!regex)
751                 // We must escape special chars in the search_expr so that
752                 // it is treated as a simple string by lyx::regex.
753                 expr = escape_special_chars(expr);
754
755         lyx::regex reg_exp;
756         try {
757                 reg_exp.assign(to_utf8(expr), case_sensitive ?
758                         lyx::regex_constants::ECMAScript : lyx::regex_constants::icase);
759         } catch (lyx::regex_error const & e) {
760                 // lyx::regex throws an exception if the regular expression is not
761                 // valid.
762                 LYXERR(Debug::GUI, e.what());
763                 return vector<docstring>();
764         }
765
766         vector<docstring>::const_iterator it = keys_to_search.begin();
767         vector<docstring>::const_iterator end = keys_to_search.end();
768         for (; it != end; ++it ) {
769                 BiblioInfo::const_iterator info = bi.find(*it);
770                 if (info == bi.end())
771                         continue;
772
773                 BibTeXInfo const & kvm = info->second;
774                 string data;
775                 if (only_keys)
776                         data = to_utf8(*it);
777                 else if (field.empty())
778                         data = to_utf8(*it) + ' ' + to_utf8(kvm.allData());
779                 else
780                         data = to_utf8(kvm[field]);
781
782                 if (data.empty())
783                         continue;
784
785                 try {
786                         if (lyx::regex_search(data, reg_exp))
787                                 foundKeys.push_back(*it);
788                 }
789                 catch (lyx::regex_error const & e) {
790                         LYXERR(Debug::GUI, e.what());
791                         return vector<docstring>();
792                 }
793         }
794         return foundKeys;
795 }
796
797
798 void GuiCitation::dispatchParams()
799 {
800         std::string const lfun = InsetCommand::params2string(params_);
801         dispatch(FuncRequest(getLfun(), lfun));
802 }
803
804
805 BiblioInfo const & GuiCitation::bibInfo() const
806 {
807         Buffer const & buf = documentBuffer();
808         buf.reloadBibInfoCache();
809         return buf.masterBibInfo();
810 }
811
812
813 void GuiCitation::saveSession() const
814 {
815         Dialog::saveSession();
816         QSettings settings;
817         settings.setValue(
818                 sessionKey() + "/regex", regexp_->isChecked());
819         settings.setValue(
820                 sessionKey() + "/casesensitive", casesense_->isChecked());
821         settings.setValue(
822                 sessionKey() + "/autofind", instant_->isChecked());
823 }
824
825
826 void GuiCitation::restoreSession()
827 {
828         Dialog::restoreSession();
829         QSettings settings;
830         regexp_->setChecked(settings.value(sessionKey() + "/regex").toBool());
831         casesense_->setChecked(settings.value(sessionKey() + "/casesensitive").toBool());
832         instant_->setChecked(settings.value(sessionKey() + "/autofind").toBool());
833         updateFilterHint();
834 }
835
836
837 Dialog * createGuiCitation(GuiView & lv) { return new GuiCitation(lv); }
838
839
840 } // namespace frontend
841 } // namespace lyx
842
843 #include "moc_GuiCitation.cpp"
844