mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-16 07:55:41 +00:00
e15a8f3551
File format change. This allows for the relevant InsetCommand-based dialogs (such as citation text before/after, Bibitem label, hyperlink name etc.) to provide both the input of verbatim code or text that is transformed to proper LaTeX code. Some dialogs (Nomencl, Href) already had some methods (although they could not be toggled), which are now centralized and streamlined. The initial work of this patch has been done by Georg Baum (see http://www.lyx.org/trac/attachment/ticket/2751/x.diff) Fixes: #2751, #8227.
74 lines
1.6 KiB
C++
74 lines
1.6 KiB
C++
/**
|
|
* \file GuiBibitem.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "GuiBibitem.h"
|
|
|
|
#include "qt_helpers.h"
|
|
|
|
#include "insets/InsetCommand.h"
|
|
|
|
#include <QLineEdit>
|
|
#include <QPushButton>
|
|
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
|
|
GuiBibitem::GuiBibitem(QWidget * parent) : InsetParamsWidget(parent)
|
|
{
|
|
setupUi(this);
|
|
|
|
connect(keyED, SIGNAL(textChanged(QString)),
|
|
this, SIGNAL(changed()));
|
|
connect(labelED, SIGNAL(textChanged(QString)),
|
|
this, SIGNAL(changed()));
|
|
connect(literalCB, SIGNAL(clicked()),
|
|
this, SIGNAL(changed()));
|
|
}
|
|
|
|
|
|
void GuiBibitem::paramsToDialog(Inset const * inset)
|
|
{
|
|
InsetCommand const * ic = static_cast<InsetCommand const *>(inset);
|
|
InsetCommandParams const & params = ic->params();
|
|
keyED->setText(toqstr(params["key"]));
|
|
labelED->setText(toqstr(params["label"]));
|
|
literalCB->setChecked(params["literal"] == "true");
|
|
}
|
|
|
|
|
|
docstring GuiBibitem::dialogToParams() const
|
|
{
|
|
InsetCommandParams params(insetCode());
|
|
params["key"] = qstring_to_ucs4(keyED->text());
|
|
params["label"] = qstring_to_ucs4(labelED->text());
|
|
params["literal"] = literalCB->isChecked()
|
|
? from_ascii("true") : from_ascii("false");
|
|
return from_utf8(InsetCommand::params2string(params));
|
|
}
|
|
|
|
|
|
bool GuiBibitem::checkWidgets(bool readonly) const
|
|
{
|
|
keyED->setReadOnly(readonly);
|
|
labelED->setReadOnly(readonly);
|
|
if (!InsetParamsWidget::checkWidgets())
|
|
return false;
|
|
return !keyED->text().isEmpty();
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#include "moc_GuiBibitem.cpp"
|