mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
897436efbb
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18550 a592a061-630c-0410-9148-cb99ea01b6c8
226 lines
4.7 KiB
C++
226 lines
4.7 KiB
C++
/*
|
|
* \file QCitation.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Angus Leeming
|
|
* \author Kalle Dalheimer
|
|
* \author Abdelrazak Younes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "QCitation.h"
|
|
|
|
#include "qt_helpers.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
using std::vector;
|
|
using std::string;
|
|
|
|
|
|
template<typename String> static QStringList to_qstring_list(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;
|
|
}
|
|
|
|
|
|
static vector<string> const to_string_vector(QStringList const & qlist)
|
|
{
|
|
vector<string> v;
|
|
for (int i = 0; i != qlist.size(); ++i) {
|
|
if (qlist[i].isEmpty())
|
|
continue;
|
|
v.push_back(lyx::fromqstr(qlist[i]));
|
|
}
|
|
return v;
|
|
}
|
|
|
|
|
|
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 (cited_keys_.isEmpty())
|
|
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(cited_keys_.join(","));
|
|
params()["before"] = qstring_to_ucs4(before);
|
|
params()["after"] = qstring_to_ucs4(after);
|
|
dispatchParams();
|
|
}
|
|
|
|
|
|
void QCitation::clearSelection()
|
|
{
|
|
cited_keys_.clear();
|
|
selected_model_.setStringList(cited_keys_);
|
|
}
|
|
|
|
|
|
QString QCitation::textBefore()
|
|
{
|
|
return toqstr(params()["before"]);
|
|
}
|
|
|
|
|
|
QString QCitation::textAfter()
|
|
{
|
|
return toqstr(params()["after"]);
|
|
}
|
|
|
|
|
|
bool QCitation::initialiseParams(std::string const & data)
|
|
{
|
|
if (!ControlCitation::initialiseParams(data))
|
|
return false;
|
|
init();
|
|
return true;
|
|
}
|
|
|
|
|
|
void QCitation::init()
|
|
{
|
|
// Make the list of all available bibliography keys
|
|
all_keys_ = to_qstring_list(availableKeys());
|
|
available_model_.setStringList(all_keys_);
|
|
|
|
// Ditto for the keys cited in this inset
|
|
QString str = toqstr(params()["key"]);
|
|
if (str.isEmpty())
|
|
cited_keys_.clear();
|
|
else
|
|
cited_keys_ = str.split(",");
|
|
|
|
selected_model_.setStringList(cited_keys_);
|
|
}
|
|
|
|
|
|
void QCitation::findKey(QString const & str, bool only_keys,
|
|
bool case_sensitive, bool reg_exp)
|
|
{
|
|
if (str.isEmpty()) {
|
|
available_model_.setStringList(all_keys_);
|
|
return;
|
|
}
|
|
|
|
// Used for optimisation: store last searched string.
|
|
static QString last_searched_string;
|
|
// Used to disable the above optimisation.
|
|
static bool last_case_sensitive;
|
|
static bool last_reg_exp;
|
|
// Reset last_searched_string in case of changed option.
|
|
if (last_case_sensitive != case_sensitive
|
|
|| last_reg_exp != reg_exp) {
|
|
LYXERR(Debug::GUI) << "QCitation::findKey: optimisation disabled!" << std::endl;
|
|
last_searched_string.clear();
|
|
}
|
|
// save option for next search.
|
|
last_case_sensitive = case_sensitive;
|
|
last_reg_exp = reg_exp;
|
|
|
|
Qt::CaseSensitivity qtcase = case_sensitive?
|
|
Qt::CaseSensitive: Qt::CaseInsensitive;
|
|
QStringList keys;
|
|
// If new string (str) contains the last searched one...
|
|
if (!last_searched_string.isEmpty() && str.size() > 1
|
|
&& str.contains(last_searched_string, qtcase))
|
|
// ... then only search within already found list.
|
|
keys = available_model_.stringList();
|
|
else
|
|
// ... else search all keys.
|
|
keys = all_keys_;
|
|
// save searched string for next search.
|
|
last_searched_string = str;
|
|
|
|
QStringList result;
|
|
if (only_keys)
|
|
// Search only within the matching keys:
|
|
result = keys.filter(str, qtcase);
|
|
else
|
|
// Search within matching keys and associated info.
|
|
result = to_qstring_list(searchKeys(to_string_vector(keys),
|
|
qstring_to_ucs4(str), case_sensitive, reg_exp));
|
|
|
|
available_model_.setStringList(result);
|
|
}
|
|
|
|
|
|
void QCitation::addKey(QModelIndex const & index)
|
|
{
|
|
cited_keys_.append(index.data().toString());
|
|
selected_model_.setStringList(cited_keys_);
|
|
}
|
|
|
|
|
|
void QCitation::deleteKey(QModelIndex const & index)
|
|
{
|
|
cited_keys_.removeAt(index.row());
|
|
selected_model_.setStringList(cited_keys_);
|
|
}
|
|
|
|
|
|
void QCitation::upKey(QModelIndex const & index)
|
|
{
|
|
int pos = index.row();
|
|
cited_keys_.swap(pos, pos - 1);
|
|
selected_model_.setStringList(cited_keys_);
|
|
}
|
|
|
|
|
|
void QCitation::downKey(QModelIndex const & index)
|
|
{
|
|
int pos = index.row();
|
|
cited_keys_.swap(pos, pos + 1);
|
|
selected_model_.setStringList(cited_keys_);
|
|
}
|
|
|
|
|
|
QStringList QCitation::citationStyles(int sel)
|
|
{
|
|
string const key = fromqstr(cited_keys_[sel]);
|
|
return to_qstring_list(getCiteStrings(key));
|
|
}
|
|
|
|
|
|
QString QCitation::getKeyInfo(QString const & sel)
|
|
{
|
|
return toqstr(getInfo(fromqstr(sel)));
|
|
}
|
|
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|