lyx_mirror/src/frontends/qt2/QCitationDialog.h
John Levon 0c5c06c8c4 The initial merge of the Qt frontend, and the necessary compile fixes.
All still VERY primitive, in fact even more primitive since some stuff
got re-horked after the meeting, and still needs working on. Won't actually
compile out of the box, but the tweaks should be pretty obvious for any
body sufficiently daring.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4427 a592a061-630c-0410-9148-cb99ea01b6c8
2002-06-19 03:38:44 +00:00

49 lines
994 B
C++

/**
* \file QCitationDialog.h
* Copyright 2001 the LyX Team
* Read the file COPYING
*
* \author Kalle Dalheimer <kalle@klaralvdalens-datakonsult.se>
*/
#ifndef QCITATIONDIALOG_H
#define QCITATIONDIALOG_H
#include <config.h>
#include "support/lstrings.h"
#include "QCitation.h"
#include "ui/QCitationDialogBase.h"
#include "controllers/biblio.h"
class QCitationDialog : public QCitationDialogBase
{ Q_OBJECT
public:
QCitationDialog(QCitation * form);
~QCitationDialog();
protected slots:
virtual void slotBibHighlighted(int sel);
virtual void slotBibSelected(int sel);
virtual void slotCiteHighlighted(int sel);
virtual void slotAddClicked();
virtual void slotDelClicked();
virtual void slotUpClicked();
virtual void slotDownClicked();
virtual void slotPreviousClicked();
virtual void slotNextClicked();
virtual void changed_adaptor() {
form_->changed();
}
private:
void doFind(biblio::Direction dir);
private:
QCitation * form_;
};
#endif // QCITATIOINDIALOG_H