mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-04 22:32:19 +00:00
cda53633ff
Qt users should autogen.sh Gnome users --- you're on your own ;-) Happy recompiling. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6253 a592a061-630c-0410-9148-cb99ea01b6c8
68 lines
1.2 KiB
C++
68 lines
1.2 KiB
C++
// -*- 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
|
|
|
|
|
|
#include "QDialogView.h"
|
|
|
|
|
|
class QListBox;
|
|
class ControlCitation;
|
|
class QCitationDialog;
|
|
|
|
|
|
class QCitation : public QController<ControlCitation, QView<QCitationDialog> >
|
|
{
|
|
public:
|
|
friend class QCitationDialog;
|
|
///
|
|
QCitation(Dialog &);
|
|
private:
|
|
///
|
|
enum State {
|
|
///
|
|
ON,
|
|
///
|
|
OFF
|
|
};
|
|
|
|
/// Set the Params variable for the Controller.
|
|
virtual void apply();
|
|
/// Build the dialog.
|
|
virtual void build_dialog();
|
|
/// Hide the dialog.
|
|
virtual void hide();
|
|
/// Update dialog before/whilst showing it.
|
|
virtual void update_contents();
|
|
|
|
/// fill the styles combo
|
|
void fillStyles();
|
|
|
|
/// set the styles combo
|
|
void updateStyle();
|
|
|
|
void updateBrowser(QListBox *, std::vector<string> const &) const;
|
|
///
|
|
void setBibButtons(State) const;
|
|
///
|
|
void setCiteButtons(State) const;
|
|
|
|
///
|
|
std::vector<string> citekeys;
|
|
///
|
|
std::vector<string> bibkeys;
|
|
};
|
|
|
|
#endif // QCITATION_H
|