]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiBibitem.cpp
The Author(Year) label format is also mandatory for numeric natbib!
[lyx.git] / src / frontends / qt4 / GuiBibitem.cpp
1 /**
2  * \file GuiBibitem.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 Jürgen Spitzmüller
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "GuiBibitem.h"
15
16 #include "Buffer.h"
17 #include "BufferParams.h"
18
19 #include "qt_helpers.h"
20
21 #include "insets/InsetCommand.h"
22
23 #include <QLineEdit>
24 #include <QPushButton>
25
26
27 namespace lyx {
28 namespace frontend {
29
30
31 GuiBibitem::GuiBibitem(QWidget * parent) : InsetParamsWidget(parent)
32 {
33         setupUi(this);
34
35         connect(keyED, SIGNAL(textChanged(QString)),
36                 this, SIGNAL(changed()));
37         connect(labelED, SIGNAL(textChanged(QString)),
38                 this, SIGNAL(changed()));
39         connect(allAuthorsED, SIGNAL(textChanged(QString)),
40                 this, SIGNAL(changed()));
41         connect(yearED, SIGNAL(textChanged(QString)),
42                 this, SIGNAL(changed()));
43         connect(literalCB, SIGNAL(clicked()),
44                 this, SIGNAL(changed()));
45 }
46
47
48 void GuiBibitem::paramsToDialog(Inset const * inset)
49 {
50         InsetCommand const * ic = static_cast<InsetCommand const *>(inset);
51         InsetCommandParams const & params = ic->params();
52         keyED->setText(toqstr(params["key"]));
53         literalCB->setChecked(params["literal"] == "true");
54         QString const label = toqstr(params["label"]);
55         if (inset->buffer().masterParams().citeEngine() == "natbib") {
56                 yearED->setHidden(false);
57                 yearLA->setHidden(false);
58                 allAuthorsED->setHidden(false);
59                 allAuthorsLA->setHidden(false);
60                 labelLA->setText(qt_("Author &Names:"));
61                 labelED->setToolTip(qt_("Insert the author name(s) for the author-year reference here. "
62                                         "If you use an abbreviated list (with 'et al.'), the full list can go below."));
63                 int const i = label.lastIndexOf("(");
64                 int const j = label.lastIndexOf(")");
65                 if (i != -1 && j != -1 && i < j) {
66                         // Split Author(s) and Year
67                         // Natbib syntax is "Jones et al.(1990)Jones, Baker, and Williams"
68                         // (full list is optional)
69                         QString const year = label.left(j).mid(i + 1);
70                         QString const author = label.left(i);
71                         QString const allauthors = label.mid(j + 1);
72                         labelED->setText(author);
73                         yearED->setText(year);
74                         allAuthorsED->setText(allauthors);
75                 } else
76                         labelED->setText(label);
77         } else {
78                 yearED->setHidden(true);
79                 yearLA->setHidden(true);
80                 allAuthorsED->setHidden(true);
81                 allAuthorsLA->setHidden(true);
82                 labelLA->setText(qt_("&Label:"));
83                 labelED->setToolTip(qt_("The label as it appears in the document"));
84                 labelED->setText(label);
85         }
86 }
87
88
89 docstring GuiBibitem::dialogToParams() const
90 {
91         InsetCommandParams params(insetCode());
92         QString label = labelED->text();
93         if (!yearED->isHidden())
94                 label += "(" + yearED->text() + ")" + allAuthorsED->text();
95         params["key"] = qstring_to_ucs4(keyED->text());
96         params["label"] = qstring_to_ucs4(label);
97         params["literal"] = literalCB->isChecked()
98                         ? from_ascii("true") : from_ascii("false");
99         return from_utf8(InsetCommand::params2string(params));
100 }
101
102
103 bool GuiBibitem::checkWidgets(bool readonly) const
104 {
105         keyED->setReadOnly(readonly);
106         labelED->setReadOnly(readonly);
107         if (!InsetParamsWidget::checkWidgets())
108                 return false;
109         return !keyED->text().isEmpty()
110                 && (yearED->isHidden() || !yearED->text().isEmpty());
111 }
112
113 } // namespace frontend
114 } // namespace lyx
115
116 #include "moc_GuiBibitem.cpp"