mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
0c5c06c8c4
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
49 lines
994 B
C++
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
|