mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
e4c3ce4627
Don't limit citation keys to ASCII anymore, since InsetBibitem can generate non-ASCII keys. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16310 a592a061-630c-0410-9148-cb99ea01b6c8
173 lines
3.3 KiB
C
173 lines
3.3 KiB
C
/**
|
|
* \file QCitation.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Angus Leeming
|
|
* \author Kalle Dalheimer
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "ControlCitation.h"
|
|
#include "QCitation.h"
|
|
#include "Qt2BC.h"
|
|
#include "qt_helpers.h"
|
|
|
|
#include "bufferparams.h"
|
|
|
|
#include "controllers/ButtonController.h"
|
|
#include "controllers/ControlCitation.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
using std::vector;
|
|
using std::string;
|
|
|
|
|
|
namespace {
|
|
|
|
template<typename String> static QStringList toQStringList(vector<String> const & v)
|
|
{
|
|
QStringList qlist;
|
|
|
|
for (size_t i=0; i != v.size(); ++i) {
|
|
if (v[i].empty())
|
|
continue;
|
|
qlist.append(lyx::toqstr(v[i]));
|
|
}
|
|
return qlist;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
|
|
QCitation::QCitation(Dialog & parent)
|
|
: ControlCitation(parent)
|
|
{
|
|
}
|
|
|
|
|
|
void QCitation::apply(int const choice, bool const full, bool const force,
|
|
QString before, QString after)
|
|
{
|
|
if (selected_keys_.rowCount() == 0)
|
|
return;
|
|
|
|
vector<biblio::CiteStyle> const & styles =
|
|
ControlCitation::getCiteStyles();
|
|
|
|
string const command =
|
|
biblio::CitationStyle(styles[choice], full, force)
|
|
.asLatexStr();
|
|
|
|
params().setCmdName(command);
|
|
params()["key"] = qstring_to_ucs4(selected_keys_.stringList().join(","));
|
|
params()["before"] = qstring_to_ucs4(before);
|
|
params()["after"] = qstring_to_ucs4(after);
|
|
dispatchParams();
|
|
}
|
|
|
|
|
|
void QCitation::clearSelection()
|
|
{
|
|
selected_keys_.setStringList(QStringList());
|
|
}
|
|
|
|
|
|
QString QCitation::textBefore()
|
|
{
|
|
return toqstr(params()["before"]);
|
|
}
|
|
|
|
|
|
QString QCitation::textAfter()
|
|
{
|
|
return toqstr(params()["after"]);
|
|
}
|
|
|
|
|
|
void QCitation::updateModel()
|
|
{
|
|
// Make the list of all available bibliography keys
|
|
QStringList keys = toQStringList(biblio::getKeys(bibkeysInfo()));
|
|
available_keys_.setStringList(keys);
|
|
|
|
// Ditto for the keys cited in this inset
|
|
QString str = toqstr(params()["key"]);
|
|
if (!str.isEmpty()) {
|
|
keys = str.split(",");
|
|
selected_keys_.setStringList(keys);
|
|
}
|
|
}
|
|
|
|
|
|
void QCitation::findKey(QString const & str)
|
|
{
|
|
QStringList sl = available_keys_.stringList().filter(str, Qt::CaseInsensitive);
|
|
found_keys_.setStringList(sl);
|
|
}
|
|
|
|
|
|
void QCitation::addKey(QModelIndex const & index)
|
|
{
|
|
QStringList keys = selected_keys_.stringList();
|
|
keys.append(index.data().toString());
|
|
selected_keys_.setStringList(keys);
|
|
}
|
|
|
|
|
|
void QCitation::deleteKey(QModelIndex const & index)
|
|
{
|
|
QStringList keys = selected_keys_.stringList();
|
|
keys.removeAt(index.row());
|
|
selected_keys_.setStringList(keys);
|
|
}
|
|
|
|
|
|
void QCitation::upKey(QModelIndex const & index)
|
|
{
|
|
QStringList keys = selected_keys_.stringList();
|
|
int pos = index.row();
|
|
keys.swap(pos, pos - 1);
|
|
selected_keys_.setStringList(keys);
|
|
}
|
|
|
|
|
|
void QCitation::downKey(QModelIndex const & index)
|
|
{
|
|
QStringList keys = selected_keys_.stringList();
|
|
int pos = index.row();
|
|
keys.swap(pos, pos + 1);
|
|
selected_keys_.setStringList(keys);
|
|
}
|
|
|
|
|
|
QStringList QCitation::citationStyles(int sel)
|
|
{
|
|
string const key = fromqstr(selected_keys_.stringList()[sel]);
|
|
return toQStringList(getCiteStrings(key));
|
|
}
|
|
|
|
|
|
QString QCitation::getKeyInfo(QString const & sel)
|
|
{
|
|
if (!bibkeysInfo().empty())
|
|
return toqstr(biblio::getInfo(bibkeysInfo(), fromqstr(sel) ));
|
|
|
|
return QString();
|
|
}
|
|
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|