]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiCitation.cpp
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / GuiCitation.cpp
index c2d35a3b1be7fef97687d0336300607dada2b241..35f7e913a7fc835638c4e4251d2a52fa78cdb452 100644 (file)
@@ -1,3 +1,4 @@
+
 /**
  * \file GuiCitation.cpp
  * This file is part of LyX, the document processor.
@@ -31,7 +32,9 @@
 #include "support/lstrings.h"
 
 #include <QCloseEvent>
+#include <QSettings>
 #include <QShowEvent>
+#include <QVariant>
 
 #include <vector>
 #include <string>
@@ -101,11 +104,9 @@ GuiCitation::GuiCitation(GuiView & lv)
                this, SLOT(on_okPB_clicked()));
        connect(textAfterED, SIGNAL(returnPressed()),
                this, SLOT(on_okPB_clicked()));
-               
-       connect(this, SIGNAL(rejected()), this, SLOT(cleanUp()));
 
        selectionManager = new GuiSelectionManager(availableLV, selectedLV, 
-                       addPB, deletePB, upPB, downPB, available(), selected());
+                       addPB, deletePB, upPB, downPB, &available_model_, &selected_model_);
        connect(selectionManager, SIGNAL(selectionChanged()),
                this, SLOT(setCitedKeys()));
        connect(selectionManager, SIGNAL(updateHook()),
@@ -113,6 +114,8 @@ GuiCitation::GuiCitation(GuiView & lv)
        connect(selectionManager, SIGNAL(okHook()),
                this, SLOT(on_okPB_clicked()));
 
+       setFocusProxy(availableLV);
+
        // FIXME: the sizeHint() for this is _way_ too high
        infoML->setFixedHeight(60);
 }
@@ -124,19 +127,10 @@ GuiCitation::~GuiCitation()
 }
 
 
-void GuiCitation::cleanUp() 
-{
-       clearSelection();
-       clearParams();
-       close();
-}
-
-
 void GuiCitation::closeEvent(QCloseEvent * e)
 {
        clearSelection();
-       clearParams();
-       e->accept();
+       DialogView::closeEvent(e);
 }
 
 
@@ -189,30 +183,37 @@ void GuiCitation::on_restorePB_clicked()
 }
 
 
+void GuiCitation::updateControls()
+{
+       BiblioInfo const & bi = bibInfo();
+       updateControls(bi);
+}
+
+
 // The main point of separating this out is that the fill*() methods
 // called in update() do not need to be called for INTERNAL updates,
 // such as when addPB is pressed, as the list of fields, entries, etc,
 // will not have changed. At the moment, however, the division between
 // fillStyles() and updateStyle() doesn't lend itself to dividing the
 // two methods, though they should be divisible.
-void GuiCitation::updateControls()
+void GuiCitation::updateControls(BiblioInfo const & bi)
 {
        if (selectionManager->selectedFocused()) { 
                if (selectedLV->selectionModel()->selectedIndexes().isEmpty())
-                       updateInfo(availableLV->currentIndex());
+                       updateInfo(bi, availableLV->currentIndex());
                else
-                       updateInfo(selectedLV->currentIndex());
+                       updateInfo(bi, selectedLV->currentIndex());
        } else {
                if (availableLV->selectionModel()->selectedIndexes().isEmpty())
-                       updateInfo(QModelIndex());
+                       updateInfo(bi, QModelIndex());
                else
-                       updateInfo(availableLV->currentIndex());
+                       updateInfo(bi, availableLV->currentIndex());
        }
        setButtons();
 
-       textBeforeED->setText(textBefore());
-       textAfterED->setText(textAfter());
-       fillStyles();
+       textBeforeED->setText(toqstr(params_["before"]));
+       textAfterED->setText(toqstr(params_["after"]));
+       fillStyles(bi);
        updateStyle();
 }
 
@@ -230,8 +231,14 @@ void GuiCitation::updateFormatting(CiteStyle currentStyle)
 
        bool const isNocite = currentStyle == NOCITE;
 
-       fulllistCB->setEnabled(natbib_engine && haveSelection && !isNocite);
-       forceuppercaseCB->setEnabled(natbib_engine && haveSelection && !isNocite);
+       bool const isCiteyear =
+               currentStyle == CITEYEAR ||
+               currentStyle == CITEYEARPAR;
+
+       fulllistCB->setEnabled(natbib_engine && haveSelection && !isNocite
+               && !isCiteyear);
+       forceuppercaseCB->setEnabled(natbib_engine && haveSelection
+               && !isNocite && !isCiteyear);
        textBeforeED->setEnabled(!basic_engine && haveSelection && !isNocite);
        textBeforeLA->setEnabled(!basic_engine && haveSelection && !isNocite);
        textAfterED->setEnabled(haveSelection && !isNocite);
@@ -273,13 +280,13 @@ void GuiCitation::updateStyle()
 // This one needs to be called whenever citationStyleCO needs
 // to be updated---and this would be on anything that changes the
 // selection in selectedLV, or on a general update.
-void GuiCitation::fillStyles()
+void GuiCitation::fillStyles(BiblioInfo const & bi)
 {
        int const oldIndex = citationStyleCO->currentIndex();
 
        citationStyleCO->clear();
 
-       QStringList selected_keys = selected()->stringList();
+       QStringList selected_keys = selected_model_.stringList();
        if (selected_keys.empty()) {
                citationStyleCO->setEnabled(false);
                citationStyleLA->setEnabled(false);
@@ -293,7 +300,7 @@ void GuiCitation::fillStyles()
        if (!selectedLV->selectionModel()->selectedIndexes().empty())
                curr = selectedLV->selectionModel()->selectedIndexes()[0].row();
 
-       QStringList sty = citationStyles(curr);
+       QStringList sty = citationStyles(bi, curr);
 
        citationStyleCO->setEnabled(!sty.isEmpty());
        citationStyleLA->setEnabled(!sty.isEmpty());
@@ -308,13 +315,13 @@ void GuiCitation::fillStyles()
 }
 
 
-void GuiCitation::fillFields()
+void GuiCitation::fillFields(BiblioInfo const & bi)
 {
        fieldsCO->blockSignals(true);
        int const oldIndex = fieldsCO->currentIndex();
        fieldsCO->clear();
-       QStringList const & fields = getFieldsAsQStringList();
-       fieldsCO->insertItem(0, qt_("All Fields"));
+       QStringList const fields = to_qstring_list(bi.getFields());
+       fieldsCO->insertItem(0, qt_("All fields"));
        fieldsCO->insertItem(1, qt_("Keys"));
        fieldsCO->insertItems(2, fields);
        if (oldIndex != -1 && oldIndex < fieldsCO->count())
@@ -323,13 +330,13 @@ void GuiCitation::fillFields()
 }
 
 
-void GuiCitation::fillEntries()
+void GuiCitation::fillEntries(BiblioInfo const & bi)
 {
        entriesCO->blockSignals(true);
        int const oldIndex = entriesCO->currentIndex();
        entriesCO->clear();
-       QStringList const & entries = getEntriesAsQStringList();
-       entriesCO->insertItem(0, qt_("All Entry Types"));
+       QStringList const entries = to_qstring_list(bi.getEntries());
+       entriesCO->insertItem(0, qt_("All entry types"));
        entriesCO->insertItems(1, entries);
        if (oldIndex != -1 && oldIndex < entriesCO->count())
                entriesCO->setCurrentIndex(oldIndex);
@@ -340,7 +347,7 @@ void GuiCitation::fillEntries()
 bool GuiCitation::isSelected(const QModelIndex & idx)
 {
        QString const str = idx.data().toString();
-       return selected()->stringList().contains(str);
+       return selected_model_.stringList().contains(str);
 }
 
 
@@ -353,13 +360,16 @@ void GuiCitation::setButtons()
 }
 
 
-void GuiCitation::updateInfo(QModelIndex const & idx)
+void GuiCitation::updateInfo(BiblioInfo const & bi, QModelIndex const & idx)
 {
-       if (idx.isValid()) {
-               QString const keytxt = getKeyInfo(idx.data().toString());
-               infoML->document()->setPlainText(keytxt);
-       } else
+       if (!idx.isValid() || bi.empty()) {
                infoML->document()->clear();
+               return;
+       }
+
+       QString const keytxt = toqstr(
+               bi.getInfo(qstring_to_ucs4(idx.data().toString())));
+       infoML->document()->setPlainText(keytxt);
 }
 
 
@@ -367,7 +377,8 @@ void GuiCitation::findText(QString const & text, bool reset)
 {
        //"All Fields" and "Keys" are the first two
        int index = fieldsCO->currentIndex() - 2; 
-       vector<docstring> const & fields = availableFields();
+       BiblioInfo const & bi = bibInfo();
+       vector<docstring> const & fields = bi.getFields();
        docstring field;
        
        if (index <= -1 || index >= int(fields.size()))
@@ -381,7 +392,7 @@ void GuiCitation::findText(QString const & text, bool reset)
        
        //"All Entry Types" is first.
        index = entriesCO->currentIndex() - 1; 
-       vector<docstring> const & entries = availableEntries();
+       vector<docstring> const & entries = bi.getEntries();
        docstring entry_type;
        if (index < 0 || index >= int(entries.size()))
                entry_type = from_ascii("");
@@ -390,14 +401,14 @@ void GuiCitation::findText(QString const & text, bool reset)
        
        bool const case_sentitive = caseCB->checkState();
        bool const reg_exp = regexCB->checkState();
-       findKey(text, onlyKeys, field, entry_type, 
+       findKey(bi, text, onlyKeys, field, entry_type, 
                       case_sentitive, reg_exp, reset);
        //FIXME
        //It'd be nice to save and restore the current selection in 
        //availableLV. Currently, we get an automatic reset, since the
        //model is reset.
        
-       updateControls();
+       updateControls(bi);
 }
 
 
@@ -503,22 +514,11 @@ void GuiCitation::clearSelection()
 }
 
 
-QString GuiCitation::textBefore()
-{
-       return toqstr(params_["before"]);
-}
-
-
-QString GuiCitation::textAfter()
-{
-       return toqstr(params_["after"]);
-}
-
-
 void GuiCitation::init()
 {
        // Make the list of all available bibliography keys
-       all_keys_ = to_qstring_list(availableKeys());
+       BiblioInfo const & bi = bibInfo();
+       all_keys_ = to_qstring_list(bi.getKeys());
        available_model_.setStringList(all_keys_);
 
        // Ditto for the keys cited in this inset
@@ -528,14 +528,14 @@ void GuiCitation::init()
        else
                cited_keys_ = str.split(",");
        selected_model_.setStringList(cited_keys_);
-
-       fillFields();
-       fillEntries();
-       updateControls();
+       fillFields(bi);
+       fillEntries(bi);
+       updateControls(bi);
 }
 
 
-void GuiCitation::findKey(QString const & str, bool only_keys,
+void GuiCitation::findKey(BiblioInfo const & bi,
+       QString const & str, bool only_keys,
        docstring field, docstring entry_type,
        bool case_sensitive, bool reg_exp, bool reset)
 {
@@ -575,40 +575,22 @@ void GuiCitation::findKey(QString const & str, bool only_keys,
        // First, filter by entry_type, which will be faster than 
        // what follows, so we may get to do that on less.
        vector<docstring> keyVector = to_docstring_vector(keys);
-       filterByEntryType(keyVector, entry_type);
+       filterByEntryType(bi, keyVector, entry_type);
        
        if (str.isEmpty())
                result = to_qstring_list(keyVector);
        else
-               result = to_qstring_list(searchKeys(keyVector, only_keys, 
+               result = to_qstring_list(searchKeys(bi, keyVector, only_keys, 
                        qstring_to_ucs4(str), field, case_sensitive, reg_exp));
        
        available_model_.setStringList(result);
 }
 
 
-QStringList GuiCitation::getFieldsAsQStringList()
-{
-       return to_qstring_list(availableFields());
-}
-
-
-QStringList GuiCitation::getEntriesAsQStringList()
-{
-       return to_qstring_list(availableEntries());
-}
-
-
-QStringList GuiCitation::citationStyles(int sel)
+QStringList GuiCitation::citationStyles(BiblioInfo const & bi, int sel)
 {
        docstring const key = qstring_to_ucs4(cited_keys_[sel]);
-       return to_qstring_list(bibInfo().getCiteStrings(key, buffer()));
-}
-
-
-QString GuiCitation::getKeyInfo(QString const & sel)
-{
-       return toqstr(getInfo(qstring_to_ucs4(sel)));
+       return to_qstring_list(bi.getCiteStrings(key, buffer()));
 }
 
 
@@ -634,25 +616,7 @@ void GuiCitation::clearParams()
 }
 
 
-vector<docstring> GuiCitation::availableKeys() const
-{
-       return bibInfo().getKeys();
-}
-
-
-vector<docstring> GuiCitation::availableFields() const
-{
-       return bibInfo().getFields();
-}
-
-
-vector<docstring> GuiCitation::availableEntries() const
-{
-       return bibInfo().getEntries();
-}
-
-
-void GuiCitation::filterByEntryType(
+void GuiCitation::filterByEntryType(BiblioInfo const & bi,
        vector<docstring> & keyVector, docstring entry_type) 
 {
        if (entry_type.empty())
@@ -660,12 +624,12 @@ void GuiCitation::filterByEntryType(
        
        vector<docstring>::iterator it = keyVector.begin();
        vector<docstring>::iterator end = keyVector.end();
-       
+
        vector<docstring> result;
        for (; it != end; ++it) {
                docstring const key = *it;
-               BiblioInfo::const_iterator cit = bibInfo().find(key);
-               if (cit == bibInfo().end())
+               BiblioInfo::const_iterator cit = bi.find(key);
+               if (cit == bi.end())
                        continue;
                if (cit->second.entryType() == entry_type)
                        result.push_back(key);
@@ -680,15 +644,6 @@ CiteEngine GuiCitation::citeEngine() const
 }
 
 
-docstring GuiCitation::getInfo(docstring const & key) const
-{
-       if (bibInfo().empty())
-               return docstring();
-
-       return bibInfo().getInfo(key);
-}
-
-
 // Escape special chars.
 // All characters are literals except: '.|*?+(){}[]^$\'
 // These characters are literals when preceded by a "\", which is done here
@@ -712,7 +667,7 @@ static docstring escape_special_chars(docstring const & expr)
 }
 
 
-vector<docstring> GuiCitation::searchKeys(
+vector<docstring> GuiCitation::searchKeys(BiblioInfo const & bi,       
        vector<docstring> const & keys_to_search, bool only_keys,
        docstring const & search_expression, docstring field,
        bool case_sensitive, bool regex)
@@ -742,8 +697,8 @@ vector<docstring> GuiCitation::searchKeys(
        vector<docstring>::const_iterator it = keys_to_search.begin();
        vector<docstring>::const_iterator end = keys_to_search.end();
        for (; it != end; ++it ) {
-               BiblioInfo::const_iterator info = bibInfo().find(*it);
-               if (info == bibInfo().end())
+               BiblioInfo::const_iterator info = bi.find(*it);
+               if (info == bi.end())
                        continue;
                
                BibTeXInfo const & kvm = info->second;
@@ -752,8 +707,8 @@ vector<docstring> GuiCitation::searchKeys(
                        data = to_utf8(*it);
                else if (field.empty())
                        data = to_utf8(*it) + ' ' + to_utf8(kvm.allData());
-               else if (kvm.hasField(field))
-                       data = to_utf8(kvm.getValueForField(field));
+               else 
+                       data = to_utf8(kvm[field]);
                
                if (data.empty())
                        continue;
@@ -780,15 +735,42 @@ void GuiCitation::dispatchParams()
 
 BiblioInfo const & GuiCitation::bibInfo() const
 {
+       buffer().checkBibInfoCache();
        return buffer().masterBibInfo();
 }
 
 
+void GuiCitation::saveSession() const
+{
+       Dialog::saveSession();
+       QSettings settings;
+       settings.setValue(
+               sessionKey() + "/regex", regexCB->isChecked());
+       settings.setValue(
+               sessionKey() + "/casesensitive", caseCB->isChecked());
+       settings.setValue(
+               sessionKey() + "/autofind", asTypeCB->isChecked());
+}
+
+
+void GuiCitation::restoreSession()
+{
+       Dialog::restoreSession();
+       QSettings settings;
+       regexCB->setChecked(
+               settings.value(sessionKey() + "/regex").toBool());
+       caseCB->setChecked(
+               settings.value(sessionKey() + "/casesensitive").toBool());
+       asTypeCB->setChecked(
+               settings.value(sessionKey() + "/autofind").toBool());
+}
+
+
 Dialog * createGuiCitation(GuiView & lv) { return new GuiCitation(lv); }
 
 
 } // namespace frontend
 } // namespace lyx
 
-#include "GuiCitation_moc.cpp"
+#include "moc_GuiCitation.cpp"