mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
f7ba7c8e9f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3806 a592a061-630c-0410-9148-cb99ea01b6c8
41 lines
691 B
C++
41 lines
691 B
C++
/**
|
|
* \file QBibtexDialog.h
|
|
* Copyright 2001 the LyX Team
|
|
* Read the file COPYING
|
|
*
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
*/
|
|
|
|
#ifndef QBIBTEXDIALOG_H
|
|
#define QBIBTEXDIALOG_H
|
|
|
|
#include <config.h>
|
|
|
|
#include "ui/QBibtexDialogBase.h"
|
|
|
|
class QBibtex;
|
|
|
|
class QBibtexDialog : public QBibtexDialogBase
|
|
{ Q_OBJECT
|
|
|
|
public:
|
|
QBibtexDialog(QBibtex * form);
|
|
|
|
protected slots:
|
|
virtual void change_adaptor();
|
|
virtual void browsePressed();
|
|
virtual void addPressed();
|
|
virtual void deletePressed();
|
|
virtual void styleChanged(const QString &);
|
|
virtual void databaseChanged();
|
|
|
|
|
|
protected:
|
|
virtual void closeEvent(QCloseEvent * e);
|
|
|
|
private:
|
|
QBibtex * form_;
|
|
};
|
|
|
|
#endif // QBIBTEXDIALOG_H
|