2006-03-05 17:24:44 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file QCitation.h
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QCITATION_H
|
|
|
|
#define QCITATION_H
|
|
|
|
|
2006-04-11 08:26:43 +00:00
|
|
|
#include "ControlCitation.h"
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2006-03-25 21:26:09 +00:00
|
|
|
#include <QStringListModel>
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
2006-04-11 08:26:43 +00:00
|
|
|
class QCitation : public ControlCitation
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
QCitation(Dialog &);
|
2006-06-28 08:28:16 +00:00
|
|
|
/// Available keys
|
2006-10-21 00:16:43 +00:00
|
|
|
QStringListModel * available() { return &available_keys_; }
|
2006-03-25 21:26:09 +00:00
|
|
|
|
2006-06-28 08:28:16 +00:00
|
|
|
/// Selected keys
|
2006-10-21 00:16:43 +00:00
|
|
|
QStringListModel * selected() { return &selected_keys_; }
|
2006-03-25 21:26:09 +00:00
|
|
|
|
2006-06-28 08:28:16 +00:00
|
|
|
/// Found keys
|
2006-10-21 00:16:43 +00:00
|
|
|
QStringListModel * found() { return &found_keys_; }
|
2006-04-05 23:56:29 +00:00
|
|
|
|
2006-06-28 08:28:16 +00:00
|
|
|
/// Text before cite
|
2006-04-11 08:26:43 +00:00
|
|
|
QString textBefore();
|
2006-06-28 08:28:16 +00:00
|
|
|
|
|
|
|
/// Text after cite
|
2006-04-11 08:26:43 +00:00
|
|
|
QString textAfter();
|
|
|
|
|
2006-06-28 08:28:16 +00:00
|
|
|
/// Get key description
|
|
|
|
QString getKeyInfo(QString const &);
|
|
|
|
|
|
|
|
/// Find keys containing the string (not case-sens)
|
|
|
|
void findKey(QString const &);
|
|
|
|
|
|
|
|
/// Add key to selected keys
|
|
|
|
void addKey(QModelIndex const &);
|
|
|
|
|
|
|
|
/// Delete key from selected keys
|
|
|
|
void deleteKey(QModelIndex const &);
|
2006-03-25 21:26:09 +00:00
|
|
|
|
2006-06-28 08:28:16 +00:00
|
|
|
/// Move selected key one place up
|
|
|
|
void upKey(QModelIndex const &);
|
2006-03-25 21:26:09 +00:00
|
|
|
|
2006-06-28 08:28:16 +00:00
|
|
|
/// Move selected key one place down
|
|
|
|
void downKey(QModelIndex const &);
|
2006-03-25 21:26:09 +00:00
|
|
|
|
2006-06-28 08:28:16 +00:00
|
|
|
/// List of example cite strings
|
|
|
|
QStringList citationStyles(int);
|
2006-04-11 08:26:43 +00:00
|
|
|
|
2006-06-28 08:28:16 +00:00
|
|
|
/// Check whether there are keys to select
|
2006-04-11 08:26:43 +00:00
|
|
|
virtual bool isValid();
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
/// Set the Params variable for the Controller.
|
2006-04-11 08:26:43 +00:00
|
|
|
virtual void apply(int const choice, bool const full, bool const force,
|
2006-06-28 08:28:16 +00:00
|
|
|
QString before, QString after);
|
2006-04-11 08:26:43 +00:00
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
/// Update dialog before/whilst showing it.
|
2006-04-11 08:26:43 +00:00
|
|
|
virtual void updateModel();
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2006-04-11 08:26:43 +00:00
|
|
|
private:
|
2006-03-25 21:26:09 +00:00
|
|
|
/// available keys
|
|
|
|
QStringListModel available_keys_;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
/// selected keys
|
2006-03-25 21:26:09 +00:00
|
|
|
QStringListModel selected_keys_;
|
|
|
|
|
|
|
|
/// found keys
|
|
|
|
QStringListModel found_keys_;
|
2006-03-05 17:24:44 +00:00
|
|
|
};
|
|
|
|
|
2006-04-11 08:26:43 +00:00
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
#endif // QCITATION_H
|