]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiBibitem.cpp
Use <cstdint> instead of <boost/cstdint.hpp>
[lyx.git] / src / frontends / qt4 / GuiBibitem.cpp
index 462a8705f572817efef0d00356d14e98d264e5fe..ccbbf95b20908cb54b31dc2eff281896a49f1484 100644 (file)
@@ -52,19 +52,25 @@ void GuiBibitem::paramsToDialog(Inset const * inset)
        keyED->setText(toqstr(params["key"]));
        literalCB->setChecked(params["literal"] == "true");
        QString const label = toqstr(params["label"]);
-       BufferParams const bp = inset->buffer().masterParams();
-       if (bp.citeEngine() == "natbib" && bp.citeEngineType() == ENGINE_TYPE_AUTHORYEAR) {
+       if (inset->buffer().masterParams().citeEngine() == "natbib") {
                yearED->setHidden(false);
                yearLA->setHidden(false);
                allAuthorsED->setHidden(false);
                allAuthorsLA->setHidden(false);
                labelLA->setText(qt_("Author &Names:"));
+               labelLA->setMaximumWidth(labelLA->sizeHint().width());
                labelED->setToolTip(qt_("Insert the author name(s) for the author-year reference here. "
-                                       "If you use an abbreviated list (with 'et al.'), the full list can go below."));
+                                       "If you use an abbreviated list (with `et al.'), the full list can go below."));
+               allAuthorsLA->setText(qt_("A&ll Author Names:"));
+               allAuthorsLA->setMaximumWidth(allAuthorsLA->sizeHint().width());
+               literalCB->setToolTip(qt_("Pass content of the `Author', `Year' and `All Authors' fields literally to LaTeX. "
+                                         "Check this if you want to enter LaTeX code."));
                int const i = label.lastIndexOf("(");
                int const j = label.lastIndexOf(")");
                if (i != -1 && j != -1 && i < j) {
-                       // Split Author(Year) to Author and Year
+                       // Split Author(s) and Year
+                       // Natbib syntax is "Jones et al.(1990)Jones, Baker, and Williams"
+                       // (full list is optional)
                        QString const year = label.left(j).mid(i + 1);
                        QString const author = label.left(i);
                        QString const allauthors = label.mid(j + 1);
@@ -78,9 +84,14 @@ void GuiBibitem::paramsToDialog(Inset const * inset)
                yearLA->setHidden(true);
                allAuthorsED->setHidden(true);
                allAuthorsLA->setHidden(true);
+               allAuthorsLA->setText(qt_("&Label:"));
+               allAuthorsLA->setMaximumWidth(allAuthorsLA->sizeHint().width());
                labelLA->setText(qt_("&Label:"));
+               labelLA->setMaximumWidth(labelLA->sizeHint().width());
                labelED->setToolTip(qt_("The label as it appears in the document"));
                labelED->setText(label);
+               literalCB->setToolTip(qt_("Pass content of the `Label' field literally to LaTeX. "
+                                         "Check this if you want to enter LaTeX code."));
        }
 }