]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiCitation.cpp
Mention style-dependency of of features in the tooltips, part 2
[lyx.git] / src / frontends / qt4 / GuiCitation.cpp
index 5889d68f7c7abd668f41f78a624715aab0007c8f..c121008dc5376abffa6fbe856dc8b9f299ca3410 100644 (file)
@@ -39,6 +39,7 @@
 #include <QMenu>
 #include <QSettings>
 #include <QShowEvent>
+#include <QStandardItemModel>
 #include <QVariant>
 
 #include <vector>
@@ -125,9 +126,11 @@ GuiCitation::GuiCitation(GuiView & lv)
        connect(citationStyleCO, SIGNAL(activated(int)),
                this, SLOT(on_citationStyleCO_currentIndexChanged(int)));
        connect(starredCB, SIGNAL(clicked()),
+               this, SLOT(updateStyles()));
+       connect(literalCB, SIGNAL(clicked()),
                this, SLOT(changed()));
        connect(forceuppercaseCB, SIGNAL(clicked()),
-               this, SLOT(changed()));
+               this, SLOT(updateStyles()));
        connect(textBeforeED, SIGNAL(textChanged(QString)),
                this, SLOT(updateStyles()));
        connect(textAfterED, SIGNAL(textChanged(QString)),
@@ -138,7 +141,7 @@ GuiCitation::GuiCitation(GuiView & lv)
                this, SLOT(on_okPB_clicked()));
 
        selectionManager = new GuiSelectionManager(availableLV, selectedLV,
-                       addPB, deletePB, upPB, downPB, &available_model_, &selected_model_);
+                       addPB, deletePB, upPB, downPB, &available_model_, &selected_model_, 1);
        connect(selectionManager, SIGNAL(selectionChanged()),
                this, SLOT(setCitedKeys()));
        connect(selectionManager, SIGNAL(updateHook()),
@@ -159,6 +162,12 @@ GuiCitation::GuiCitation(GuiView & lv)
        connect(instant_, SIGNAL(triggered(bool)),
                this, SLOT(instantChanged(bool)));
 
+#if (QT_VERSION < 0x050000)
+       selectedLV->horizontalHeader()->setResizeMode(QHeaderView::Stretch);
+#else
+       selectedLV->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch);
+#endif
+
        setFocusProxy(filter_);
 }
 
@@ -239,8 +248,12 @@ void GuiCitation::updateControls()
 // will not have changed.
 void GuiCitation::updateControls(BiblioInfo const & bi)
 {
-       QModelIndex idx = selectionManager->getSelectedIndex();
+       QModelIndex idx = selectionManager->getSelectedIndex(1);
        updateInfo(bi, idx);
+       int i = citationStyleCO->currentIndex();
+       if (i == -1)
+               i = 0;
+       updateFormatting(citeStyles_[i]);
        selectionManager->update();
 }
 
@@ -254,15 +267,53 @@ void GuiCitation::updateFormatting(CitationStyle currentStyle)
        bool const textbefore = currentStyle.textBefore;
        bool const textafter = currentStyle.textAfter;
 
-       bool const haveSelection =
-               selectedLV->model()->rowCount() > 0;
+       int const rows = selectedLV->model()->rowCount();
+
+       bool const qualified = currentStyle.hasQualifiedList
+               && (rows > 1
+                   || !params_["pretextlist"].empty()
+                   || !params_["posttextlist"].empty());
+       selectedLV->horizontalHeader()->setVisible(qualified);
+       selectedLV->setColumnHidden(0, !qualified);
+       selectedLV->setColumnHidden(2, !qualified);
+       bool const haveSelection = rows > 0;
+       if (qualified) {
+               textBeforeLA->setText(qt_("General text befo&re:"));
+               textAfterLA->setText(qt_("General &text after:"));
+               textBeforeED->setToolTip(qt_("Text that precedes the whole reference list. "
+                                            "For text that precedes individual items, "
+                                            "double-click on the respective entry above."));
+               textAfterLA->setToolTip(qt_("General &text after:"));
+               textAfterED->setToolTip(qt_("Text that follows the whole reference list. "
+                                            "For text that follows individual items, "
+                                            "double-click on the respective entry above."));
+       } else {
+               textBeforeLA->setText(qt_("Text befo&re:"));
+               if (textbefore && haveSelection)
+                       textBeforeED->setToolTip(qt_("Text that precedes the reference (e.g., \"cf.\")"));
+               else
+                       textBeforeED->setToolTip(qt_("Text that precedes the reference (e.g., \"cf.\"), "
+                                                    "if the current citation style supports this."));
+               textAfterLA->setText(qt_("&Text after:"));
+               if (textafter && haveSelection)
+                       textAfterED->setToolTip(qt_("Text that follows the reference (e.g., pages)"));
+               else
+                       textAfterED->setToolTip(qt_("Text that follows the reference (e.g., pages), "
+                                                   "if the current citation style supports this."));
+       }
 
        forceuppercaseCB->setEnabled(force && haveSelection);
+       if (force && haveSelection)
+               forceuppercaseCB->setToolTip("Force upper case in names (\"Del Piero\", not \"del Piero\").");
+       else
+               forceuppercaseCB->setToolTip("Force upper case in names (\"Del Piero\", not \"del Piero\"), "
+                                            "if the current citation style supports this.");
        starredCB->setEnabled(full && haveSelection);
        textBeforeED->setEnabled(textbefore && haveSelection);
        textBeforeLA->setEnabled(textbefore && haveSelection);
        textAfterED->setEnabled(textafter && haveSelection);
        textAfterLA->setEnabled(textafter && haveSelection);
+       literalCB->setEnabled(textbefore || textafter);
        citationStyleCO->setEnabled(haveSelection);
        citationStyleLA->setEnabled(haveSelection);
 
@@ -287,7 +338,11 @@ void GuiCitation::updateFormatting(CitationStyle currentStyle)
        } else {
                // This is the default meaning of the starred commands
                starredCB->setText(qt_("All aut&hors"));
-               starredCB->setToolTip(qt_("Always list all authors (rather than using \"et al.\")"));
+               if (full && haveSelection)
+                       starredCB->setToolTip(qt_("Always list all authors (rather than using \"et al.\")"));
+               else
+                       starredCB->setToolTip(qt_("Always list all authors (rather than using \"et al.\"), "
+                                                 "if the current citation style supports this."));
        }
 }
 
@@ -306,7 +361,7 @@ void GuiCitation::updateStyles()
 // Update the styles for the style combo, citationStyleCO.
 void GuiCitation::updateStyles(BiblioInfo const & bi)
 {
-       QStringList selected_keys = selected_model_.stringList();
+       QStringList selected_keys = selectedKeys();
        int curr = selectedLV->model()->rowCount() - 1;
 
        if (curr < 0 || selected_keys.empty()) {
@@ -376,7 +431,7 @@ void GuiCitation::fillEntries(BiblioInfo const & bi)
 bool GuiCitation::isSelected(QModelIndex const & idx)
 {
        QString const str = idx.data().toString();
-       return selected_model_.stringList().contains(str);
+       return selectedKeys().contains(str);
 }
 
 
@@ -397,8 +452,10 @@ void GuiCitation::updateInfo(BiblioInfo const & bi, QModelIndex const & idx)
        }
 
        infoML->setToolTip(qt_("Sketchy preview of the selected citation"));
+       CiteItem ci;
+       ci.richtext = true;
        QString const keytxt = toqstr(
-               bi.getInfo(qstring_to_ucs4(idx.data().toString()), documentBuffer(), true));
+               bi.getInfo(qstring_to_ucs4(idx.data().toString()), documentBuffer(), ci));
        infoML->document()->setHtml(keytxt);
 }
 
@@ -549,6 +606,11 @@ void GuiCitation::applyParams(int const choice, bool full, bool force,
        params_["key"] = qstring_to_ucs4(cited_keys_.join(","));
        params_["before"] = qstring_to_ucs4(before);
        params_["after"] = qstring_to_ucs4(after);
+       if (cs.hasQualifiedList) {
+               params_["pretextlist"] = getStringFromVector(getPreTexts(), from_ascii("\t"));
+               params_["posttextlist"] = getStringFromVector(getPostTexts(), from_ascii("\t"));
+       }
+       params_["literal"] = literalCB->isChecked() ? from_ascii("true") : from_ascii("false");
        dispatchParams();
 }
 
@@ -556,7 +618,107 @@ void GuiCitation::applyParams(int const choice, bool full, bool force,
 void GuiCitation::clearSelection()
 {
        cited_keys_.clear();
-       selected_model_.setStringList(cited_keys_);
+       setSelectedKeys(cited_keys_);
+}
+
+
+void GuiCitation::setSelectedKeys(QStringList const sl)
+{
+       selected_model_.clear();
+       selected_model_.setColumnCount(3);
+       QStringList headers;
+       headers << qt_("Text before")
+               << qt_("Cite key")
+               << qt_("Text after");
+       selected_model_.setHorizontalHeaderLabels(headers);
+       selectedLV->setColumnHidden(0, true);
+       selectedLV->setColumnHidden(2, true);
+       selectedLV->verticalHeader()->setVisible(false);
+       selectedLV->horizontalHeader()->setVisible(false);
+       QStringList::const_iterator it  = sl.begin();
+       QStringList::const_iterator end = sl.end();
+       for (int i = 0; it != end; ++it, ++i) {
+               QStandardItem * si = new QStandardItem();
+               si->setData(*it);
+               si->setText(*it);
+               si->setToolTip(*it);
+               si->setEditable(false);
+               selected_model_.setItem(i, 1, si);
+       }
+}
+
+
+QStringList GuiCitation::selectedKeys()
+{
+       QStringList res;
+       for (int i = 0; i != selected_model_.rowCount(); ++i) {
+               QStandardItem const * item = selected_model_.item(i, 1);
+               if (item)
+                       res.append(item->text());
+       }
+       return res;
+}
+
+
+void GuiCitation::setPreTexts(vector<docstring> const m)
+{
+       for (docstring const & s: m) {
+               QStandardItem * si = new QStandardItem();
+               docstring key;
+               docstring pre = split(s, key, ' ');
+               si->setData(toqstr(pre));
+               si->setText(toqstr(pre));
+               QModelIndexList qmil =
+                               selected_model_.match(selected_model_.index(0, 1),
+                                                    Qt::DisplayRole, toqstr(key), 1,
+                                                    Qt::MatchFlags(Qt::MatchExactly | Qt::MatchWrap));
+               if (!qmil.empty())
+                       selected_model_.setItem(qmil.front().row(), 0, si);
+       }
+}
+
+
+vector<docstring> GuiCitation::getPreTexts()
+{
+       vector<docstring> res;
+       for (int i = 0; i != selected_model_.rowCount(); ++i) {
+               QStandardItem const * key = selected_model_.item(i, 1);
+               QStandardItem const * pre = selected_model_.item(i, 0);
+               if (key && pre && !key->text().isEmpty() && !pre->text().isEmpty())
+                       res.push_back(qstring_to_ucs4(key->text()) + " " + qstring_to_ucs4(pre->text()));
+       }
+       return res;
+}
+
+
+void GuiCitation::setPostTexts(vector<docstring> const m)
+{
+       for (docstring const & s: m) {
+               QStandardItem * si = new QStandardItem();
+               docstring key;
+               docstring post = split(s, key, ' ');
+               si->setData(toqstr(post));
+               si->setText(toqstr(post));
+               QModelIndexList qmil =
+                               selected_model_.match(selected_model_.index(0, 1),
+                                                    Qt::DisplayRole, toqstr(key), 1,
+                                                    Qt::MatchFlags(Qt::MatchExactly | Qt::MatchWrap));
+               if (!qmil.empty())
+                       selected_model_.setItem(qmil.front().row(), 2, si);
+       }
+}
+
+
+vector<docstring> GuiCitation::getPostTexts()
+{
+       vector<docstring> res;
+       for (int i = 0; i != selected_model_.rowCount(); ++i) {
+               QStandardItem const * key = selected_model_.item(i, 1);
+               QStandardItem const * post = selected_model_.item(i, 2);
+               if (key && post)
+                       res.push_back(qstring_to_ucs4(key->text()) + " " + qstring_to_ucs4(post->text()));
+       }
+       return res;
 }
 
 
@@ -565,6 +727,7 @@ void GuiCitation::init()
        // Make the list of all available bibliography keys
        BiblioInfo const & bi = bibInfo();
        all_keys_ = to_qstring_list(bi.getKeys());
+
        available_model_.setStringList(all_keys_);
 
        // Ditto for the keys cited in this inset
@@ -573,7 +736,7 @@ void GuiCitation::init()
                cited_keys_.clear();
        else
                cited_keys_ = str.split(",");
-       selected_model_.setStringList(cited_keys_);
+       setSelectedKeys(cited_keys_);
 
        // Initialize the drop downs
        fillEntries(bi);
@@ -583,11 +746,16 @@ void GuiCitation::init()
        string const & cmd = params_.getCmdName();
        CitationStyle const cs =
                citationStyleFromString(cmd, documentBuffer().params());
+
        forceuppercaseCB->setChecked(cs.forceUpperCase);
        starredCB->setChecked(cs.hasStarredVersion &&
                documentBuffer().params().fullAuthorList());
        textBeforeED->setText(toqstr(params_["before"]));
        textAfterED->setText(toqstr(params_["after"]));
+       literalCB->setChecked(params_["literal"] == "true");
+
+       setPreTexts(getVectorFromString(params_["pretextlist"], from_ascii("\t")));
+       setPostTexts(getVectorFromString(params_["posttextlist"], from_ascii("\t")));
 
        // Update the interface
        updateControls(bi);
@@ -595,9 +763,7 @@ void GuiCitation::init()
        if (selected_model_.rowCount()) {
                selectedLV->blockSignals(true);
                selectedLV->setFocus();
-               QModelIndex idx = selected_model_.index(0, 0);
-               selectedLV->selectionModel()->select(idx,
-                               QItemSelectionModel::ClearAndSelect);
+               selectedLV->selectRow(0);
                selectedLV->blockSignals(false);
 
                // Find the citation style
@@ -678,20 +844,48 @@ void GuiCitation::findKey(BiblioInfo const & bi,
 
 QStringList GuiCitation::citationStyles(BiblioInfo const & bi, size_t max_size)
 {
-       docstring const before = qstring_to_ucs4(textBeforeED->text());
-       docstring const after = qstring_to_ucs4(textAfterED->text());
        vector<docstring> const keys = to_docstring_vector(cited_keys_);
        vector<CitationStyle> styles = citeStyles_;
-       // FIXME: pass a dictionary instead of individual before, after, dialog, etc.
-       vector<docstring> ret = bi.getCiteStrings(keys, styles, documentBuffer(),
-               before, after, from_utf8("dialog"), max_size);
+       int ind = citationStyleCO->currentIndex();
+       if (ind == -1)
+               ind = 0;
+       CitationStyle cs = styles[ind];
+       vector<docstring> pretexts = getPreTexts();
+       vector<docstring> posttexts = getPostTexts();
+       bool const qualified = cs.hasQualifiedList
+               && (selectedLV->model()->rowCount() > 1
+                   || !pretexts.empty()
+                   || !posttexts.empty());
+       std::map<docstring, docstring> pres;
+       for (docstring const & s: pretexts) {
+               docstring key;
+               docstring val = split(s, key, ' ');
+               pres[key] = val;
+       }
+       std::map<docstring, docstring> posts;
+       for (docstring const & s: posttexts) {
+               docstring key;
+               docstring val = split(s, key, ' ');
+               posts[key] = val;
+       }
+       CiteItem ci;
+       ci.textBefore = qstring_to_ucs4(textBeforeED->text());
+       ci.textAfter = qstring_to_ucs4(textAfterED->text());
+       ci.forceUpperCase = forceuppercaseCB->isChecked();
+       ci.Starred = starredCB->isChecked();
+       ci.context = CiteItem::Dialog;
+       ci.max_size = max_size;
+       ci.isQualified = qualified;
+       ci.pretexts = pres;
+       ci.posttexts = posts;
+       vector<docstring> ret = bi.getCiteStrings(keys, styles, documentBuffer(), ci);
        return to_qstring_list(ret);
 }
 
 
 void GuiCitation::setCitedKeys()
 {
-       cited_keys_ = selected_model_.stringList();
+       cited_keys_ = selectedKeys();
        updateStyles();
 }