]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiBibtex.cpp
Use the currentItemChanged() signal instead of itemSelectionChanged()
[lyx.git] / src / frontends / qt4 / GuiBibtex.cpp
1 /**
2  * \file GuiBibtex.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 Herbert Voß
8  * \author Angus Leeming
9  * \author Jürgen Spitzmüller
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #include <config.h>
15
16 #include "GuiBibtex.h"
17
18 #include "Buffer.h"
19 #include "BufferParams.h"
20 #include "support/debug.h"
21 #include "ui_BibtexAddUi.h"
22 #include "qt_helpers.h"
23 #include "Validator.h"
24 #include "LyXRC.h"
25 #include "support/gettext.h"
26
27 #include "ButtonPolicy.h"
28
29 #include "support/filetools.h" // changeExtension
30 #include "support/lstrings.h"
31 #include "support/FileFilterList.h"
32
33 #include <QPushButton>
34 #include <QListWidget>
35 #include <QCheckBox>
36 #include <QCloseEvent>
37 #include <QLineEdit>
38
39 using namespace std;
40 using namespace lyx::support;
41
42 namespace lyx {
43 namespace frontend {
44
45
46 GuiBibtex::GuiBibtex(GuiView & lv)
47         : GuiCommand(lv, "bibtex")
48 {
49         setupUi(this);
50
51         setViewTitle( _("BibTeX Bibliography"));
52
53         QDialog::setModal(true);
54
55         connect(okPB, SIGNAL(clicked()),
56                 this, SLOT(slotOK()));
57         connect(closePB, SIGNAL(clicked()),
58                 this, SLOT(slotClose()));
59         connect(stylePB, SIGNAL(clicked()),
60                 this, SLOT(browsePressed()));
61         connect(deletePB, SIGNAL(clicked()),
62                 this, SLOT(deletePressed()));
63         connect(upPB, SIGNAL(clicked()),
64                 this, SLOT(upPressed()));
65         connect(downPB, SIGNAL(clicked()),
66                 this, SLOT(downPressed()));
67         connect(styleCB, SIGNAL(editTextChanged(QString)),
68                 this, SLOT(change_adaptor()));
69         connect(databaseLW, SIGNAL(currentItemChanged(QListWidgetItem *, QListWidgetItem *)),
70                 this, SLOT(databaseChanged()));
71         connect(bibtocCB, SIGNAL(clicked()),
72                 this, SLOT(change_adaptor()));
73         connect(btPrintCO, SIGNAL(activated(int)),
74                 this, SLOT(change_adaptor()));
75         connect(addBibPB, SIGNAL(clicked()),
76                 this, SLOT(addPressed()));
77
78         add_ = new GuiBibtexAddDialog(this);
79         add_bc_.setPolicy(ButtonPolicy::OkCancelPolicy);
80         add_bc_.setOK(add_->addPB);
81         add_bc_.setCancel(add_->closePB);
82         add_bc_.addCheckedLineEdit(add_->bibED, 0);
83
84         connect(add_->bibED, SIGNAL(textChanged(QString)),
85                 this, SLOT(bibEDChanged()));
86         connect(add_->addPB, SIGNAL(clicked()),
87                 this, SLOT(addDatabase()));
88         connect(add_->addPB, SIGNAL(clicked()),
89                 add_, SLOT(accept()));
90         connect(add_->bibLW, SIGNAL(itemActivated(QListWidgetItem *)),
91                 this, SLOT(addDatabase()));
92         connect(add_->bibLW, SIGNAL(itemActivated(QListWidgetItem *)),
93                 add_, SLOT(accept()));
94         connect(add_->bibLW, SIGNAL(currentItemChanged(QListWidgetItem *, QListWidgetItem *)),
95                 this, SLOT(availableChanged()));
96         connect(add_->browsePB, SIGNAL(clicked()),
97                 this, SLOT(browseBibPressed()));
98         connect(add_->closePB, SIGNAL(clicked()),
99                 add_, SLOT(reject()));
100
101         bc().setPolicy(ButtonPolicy::NoRepeatedApplyReadOnlyPolicy);
102         bc().setOK(okPB);
103         bc().setCancel(closePB);
104         bc().addReadOnly(databaseLW);
105         bc().addReadOnly(stylePB);
106         bc().addReadOnly(styleCB);
107         bc().addReadOnly(bibtocCB);
108         bc().addReadOnly(addBibPB);
109         // Delete/Up/Down are handled with more conditions in
110         // databaseChanged().
111
112         // Make sure the delete/up/down buttons are disabled if necessary.
113         databaseChanged();
114 }
115
116
117 void GuiBibtex::bibEDChanged()
118 {
119         // Indicate to the button controller that the contents have
120         // changed. The actual test of validity is carried out by
121         // the checkedLineEdit.
122         add_bc_.setValid(true);
123 }
124
125
126 void GuiBibtex::change_adaptor()
127 {
128         changed();
129 }
130
131
132 void GuiBibtex::browsePressed()
133 {
134         docstring const file = browseBst(docstring());
135
136         if (!file.empty()) {
137                 // FIXME UNICODE
138                 docstring const filen = from_utf8(changeExtension(to_utf8(file), ""));
139                 bool present = false;
140                 unsigned int pres = 0;
141
142                 for (int i = 0; i != styleCB->count(); ++i) {
143                         if (qstring_to_ucs4(styleCB->itemText(i)) == filen) {
144                                 present = true;
145                                 pres = i;
146                         }
147                 }
148
149                 if (!present)
150                         styleCB->insertItem(0, toqstr(filen));
151
152                 styleCB->setCurrentIndex(pres);
153                 changed();
154         }
155 }
156
157
158 void GuiBibtex::browseBibPressed()
159 {
160         docstring const file = trim(browseBib(docstring()));
161
162         if (!file.empty()) {
163                 // FIXME UNICODE
164                 QString const f = toqstr(changeExtension(to_utf8(file), ""));
165                 bool present = false;
166
167                 for (int i = 0; i < add_->bibLW->count(); ++i) {
168                         if (add_->bibLW->item(i)->text() == f)
169                                 present = true;
170                 }
171
172                 if (!present) {
173                         add_->bibLW->addItem(f);
174                         changed();
175                 }
176
177                 add_->bibED->setText(f);
178         }
179 }
180
181
182 void GuiBibtex::addPressed()
183 {
184         add_bc_.setValid(false);
185         add_->exec();
186 }
187
188
189 void GuiBibtex::addDatabase()
190 {
191         int const sel = add_->bibLW->currentRow();
192         docstring const file = trim(qstring_to_ucs4(add_->bibED->text()));
193
194         if (sel < 0 && file.empty())
195                 return;
196
197         // Add the selected browser_bib keys to browser_database
198         // multiple selections are possible
199         for (int i = 0; i != add_->bibLW->count(); ++i) {
200                 QListWidgetItem * const item = add_->bibLW->item(i);
201                 if (add_->bibLW->isItemSelected(item)) {
202                         add_->bibLW->setItemSelected(item, false);
203                         QList<QListWidgetItem *> matches =
204                                 databaseLW->findItems(item->text(), Qt::MatchExactly);
205                         if (matches.empty()) {
206                                 QString label = item->text();
207                                 QListWidgetItem * db = new QListWidgetItem(label);
208                                 db->setFlags(db->flags() | Qt::ItemIsSelectable
209                                         | Qt::ItemIsUserCheckable);
210                                 db->setCheckState(Qt::Checked);
211                                 databaseLW->addItem(db);
212                         }
213                 }
214         }
215
216         if (!file.empty()) {
217                 add_->bibED->clear();
218                 QString const f = toqstr(from_utf8(changeExtension(to_utf8(file), "")));
219                 QList<QListWidgetItem *> matches =
220                         databaseLW->findItems(f, Qt::MatchExactly);
221                 if (matches.empty()) {
222                         QListWidgetItem * db = new QListWidgetItem(f);
223                         db->setFlags(db->flags() | Qt::ItemIsSelectable
224                                 | Qt::ItemIsUserCheckable);
225                         db->setCheckState(Qt::Checked);
226                         databaseLW->addItem(db);
227                 }
228         }
229
230         databaseChanged();
231         changed();
232 }
233
234
235 void GuiBibtex::deletePressed()
236 {
237         QListWidgetItem *cur = databaseLW->takeItem(databaseLW->currentRow());
238         if (cur) {
239                 delete cur;
240                 databaseChanged();
241                 changed();
242         }
243 }
244
245
246 void GuiBibtex::upPressed()
247 {
248         int row = databaseLW->currentRow();
249         QListWidgetItem *cur = databaseLW->takeItem(row);
250         databaseLW->insertItem(row - 1, cur);
251         databaseLW->setCurrentItem(cur);
252         changed();
253 }
254
255
256 void GuiBibtex::downPressed()
257 {
258         int row = databaseLW->currentRow();
259         QListWidgetItem *cur = databaseLW->takeItem(row);
260         databaseLW->insertItem(row + 1, cur);
261         databaseLW->setCurrentItem(cur);
262         changed();
263 }
264
265
266 void GuiBibtex::databaseChanged()
267 {
268         bool readOnly = isBufferReadonly();
269         int count = databaseLW->count();
270         int row = databaseLW->currentRow();
271         deletePB->setEnabled(!readOnly && row != -1);
272         upPB->setEnabled(!readOnly && count > 1 && row > 0);
273         downPB->setEnabled(!readOnly && count > 1 && row < count - 1);
274 }
275
276
277 void GuiBibtex::availableChanged()
278 {
279         add_bc_.setValid(true);
280 }
281
282
283 void GuiBibtex::closeEvent(QCloseEvent *e)
284 {
285         slotClose();
286         e->accept();
287 }
288
289
290 void GuiBibtex::updateContents()
291 {
292         bool bibtopic = usingBibtopic();
293
294         databaseLW->clear();
295
296         docstring bibs = params_["bibfiles"];
297         docstring embs = params_["embed"];
298         docstring bib;
299         docstring emb;
300
301         while (!bibs.empty()) {
302                 bibs = split(bibs, bib, ',');
303                 embs = split(embs, emb, ',');
304                 bib = trim(bib);
305                 if (!bib.empty()) {
306                         QListWidgetItem * db = new QListWidgetItem(toqstr(bib));
307                         db->setFlags(db->flags() | Qt::ItemIsSelectable
308                                 | Qt::ItemIsUserCheckable);
309                         db->setCheckState(emb.empty() ? Qt::Unchecked : Qt::Checked);
310                         databaseLW->addItem(db);
311                 }
312         }
313
314         add_->bibLW->clear();
315
316         vector<string> bib_str;
317         getBibFiles(bib_str);
318         for (vector<string>::const_iterator it = bib_str.begin();
319                 it != bib_str.end(); ++it) {
320                 string bibItem(changeExtension(*it, ""));
321                 add_->bibLW->addItem(toqstr(bibItem));
322         }
323
324         string bibstyle = getStylefile();
325
326         bibtocCB->setChecked(bibtotoc() && !bibtopic);
327         bibtocCB->setEnabled(!bibtopic);
328
329         if (!bibtopic && btPrintCO->count() == 3)
330                 btPrintCO->removeItem(1);
331         else if (bibtopic && btPrintCO->count() < 3)
332                 btPrintCO->insertItem(1, qt_("all uncited references", 0));
333
334         docstring btprint = params_["btprint"];
335         int btp = 0;
336         if ((bibtopic && btprint == "btPrintNotCited") ||
337            (!bibtopic && btprint == "btPrintAll"))
338                 btp = 1;
339         else if (bibtopic && btprint == "btPrintAll")
340                 btp = 2;
341
342         btPrintCO->setCurrentIndex(btp);
343
344         styleCB->clear();
345
346         int item_nr(-1);
347
348         vector<string> str;
349         getBibStyles(str);
350         for (vector<string>::const_iterator it = str.begin();
351                 it != str.end(); ++it) {
352                 string item(changeExtension(*it, ""));
353                 if (item == bibstyle)
354                         item_nr = int(it - str.begin());
355                 styleCB->addItem(toqstr(item));
356         }
357
358         if (item_nr == -1 && !bibstyle.empty()) {
359                 styleCB->addItem(toqstr(bibstyle));
360                 item_nr = styleCB->count() - 1;
361         }
362
363         if (item_nr != -1)
364                 styleCB->setCurrentIndex(item_nr);
365         else
366                 styleCB->clearEditText();
367 }
368
369
370 void GuiBibtex::applyView()
371 {
372         docstring dbs = qstring_to_ucs4(databaseLW->item(0)->text());
373         docstring emb = databaseLW->item(0)->checkState() == Qt::Checked ? _("true") : _("false");
374
375         unsigned int maxCount = databaseLW->count();
376         for (unsigned int i = 1; i < maxCount; i++) {
377                 dbs += ',';
378                 dbs += qstring_to_ucs4(databaseLW->item(i)->text());
379                 emb += ',';
380                 emb += databaseLW->item(i)->checkState() == Qt::Checked ? _("true") : _("false");
381         }
382
383         params_["bibfiles"] = dbs;
384         params_["embed"] = emb;
385
386         docstring const bibstyle = qstring_to_ucs4(styleCB->currentText());
387         bool const bibtotoc = bibtocCB->isChecked();
388
389         if (bibtotoc && (!bibstyle.empty())) {
390                 // both bibtotoc and style
391                 params_["options"] = "bibtotoc," + bibstyle;
392         } else if (bibtotoc) {
393                 // bibtotoc and no style
394                 params_["options"] = from_ascii("bibtotoc");
395         } else {
396                 // only style. An empty one is valid, because some
397                 // documentclasses have an own \bibliographystyle{}
398                 // command!
399                 params_["options"] = bibstyle;
400         }
401
402         int btp = btPrintCO->currentIndex();
403
404         if (usingBibtopic()) {
405                 // bibtopic allows three kinds of sections:
406                 // 1. sections that include all cited references of the database(s)
407                 // 2. sections that include all uncited references of the database(s)
408                 // 3. sections that include all references of the database(s), cited or not
409                 switch (btp) {
410                 case 0:
411                         params_["btprint"] = from_ascii("btPrintCited");
412                         break;
413                 case 1:
414                         params_["btprint"] = from_ascii("btPrintNotCited");
415                         break;
416                 case 2:
417                         params_["btprint"] = from_ascii("btPrintAll");
418                         break;
419                 }
420         } else {
421                 switch (btp) {
422                 case 0:
423                         params_["btprint"] = docstring();
424                         break;
425                 case 1:
426                         // use \nocite{*}
427                         params_["btprint"] = from_ascii("btPrintAll");
428                         break;
429                 }               
430         }
431 }
432
433
434 bool GuiBibtex::isValid()
435 {
436         return databaseLW->count() != 0;
437 }
438
439
440 docstring const GuiBibtex::browseBib(docstring const & in_name) const
441 {
442         // FIXME UNICODE
443         docstring const label1 = _("Documents|#o#O");
444         docstring const dir1 = from_utf8(lyxrc.document_path);
445         FileFilterList const filter(_("BibTeX Databases (*.bib)"));
446         return browseRelFile(in_name, from_utf8(bufferFilepath()),
447                 _("Select a BibTeX database to add"), filter, false, label1, dir1);
448 }
449
450
451 docstring const GuiBibtex::browseBst(docstring const & in_name) const
452 {
453         // FIXME UNICODE
454         docstring const label1 = _("Documents|#o#O");
455         docstring const dir1 = from_utf8(lyxrc.document_path);
456         FileFilterList const filter(_("BibTeX Styles (*.bst)"));
457         return browseRelFile(in_name, from_utf8(bufferFilepath()),
458                 _("Select a BibTeX style"), filter, false, label1, dir1);
459 }
460
461
462 void GuiBibtex::getBibStyles(vector<string> & data) const
463 {
464         data.clear();
465
466         getTexFileList("bstFiles.lst", data);
467         // test, if we have a valid list, otherwise run rescan
468         if (data.empty()) {
469                 rescanBibStyles();
470                 getTexFileList("bstFiles.lst", data);
471         }
472         vector<string>::iterator it  = data.begin();
473         vector<string>::iterator end = data.end();
474         for (; it != end; ++it) {
475                 *it = onlyFilename(*it);
476         }
477         // sort on filename only (no path)
478         sort(data.begin(), data.end());
479 }
480
481
482 void GuiBibtex::getBibFiles(vector<string> & data) const
483 {
484         data.clear();
485
486         getTexFileList("bibFiles.lst", data);
487         // test, if we have a valid list, otherwise run rescan
488         if (data.empty()) {
489                 rescanBibStyles();
490                 getTexFileList("bibFiles.lst", data);
491         }
492         vector<string>::iterator it  = data.begin();
493         vector<string>::iterator end = data.end();
494         for (; it != end; ++it) {
495                 *it = onlyFilename(*it);
496         }
497         // sort on filename only (no path)
498         sort(data.begin(), data.end());
499 }
500
501
502 void GuiBibtex::rescanBibStyles() const
503 {
504         rescanTexStyles();
505 }
506
507
508 bool GuiBibtex::usingBibtopic() const
509 {
510         return buffer().params().use_bibtopic;
511 }
512
513
514 bool GuiBibtex::bibtotoc() const
515 {
516         return prefixIs(to_utf8(params_["options"]), "bibtotoc");
517 }
518
519
520 string const GuiBibtex::getStylefile() const
521 {
522         // the different bibtex packages have (and need) their
523         // own "plain" stylefiles
524         biblio::CiteEngine const engine = buffer().params().getEngine();
525         docstring defaultstyle;
526         switch (engine) {
527         case biblio::ENGINE_BASIC:
528                 defaultstyle = from_ascii("plain");
529                 break;
530         case biblio::ENGINE_NATBIB_AUTHORYEAR:
531                 defaultstyle = from_ascii("plainnat");
532                 break;
533         case biblio::ENGINE_NATBIB_NUMERICAL:
534                 defaultstyle = from_ascii("plainnat");
535                 break;
536         case biblio::ENGINE_JURABIB:
537                 defaultstyle = from_ascii("jurabib");
538                 break;
539         }
540
541         docstring bst = params_["options"];
542         if (bibtotoc()){
543                 // bibstyle exists?
544                 if (contains(bst, ',')) {
545                         docstring bibtotoc = from_ascii("bibtotoc");
546                         bst = split(bst, bibtotoc, ',');
547                 } else
548                         bst.erase();
549         }
550
551         // propose default style file for new insets
552         // existing insets might have (legally) no bst files
553         // (if the class already provides a style)
554         if (bst.empty() && params_["bibfiles"].empty())
555                 bst = defaultstyle;
556
557         // FIXME UNICODE
558         return to_utf8(bst);
559 }
560
561
562 Dialog * createGuiBibtex(GuiView & lv) { return new GuiBibtex(lv); }
563
564
565 } // namespace frontend
566 } // namespace lyx
567
568 #include "GuiBibtex_moc.cpp"