2002-09-24 13:57:09 +00:00
|
|
|
// -*- C++ -*-
|
2001-08-26 03:20:52 +00:00
|
|
|
/**
|
|
|
|
* \file QBibtexDialog.h
|
2002-09-24 13:57:09 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2001-08-26 03:20:52 +00:00
|
|
|
*
|
2002-09-24 13:57:09 +00:00
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2001-08-26 03:20:52 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QBIBTEXDIALOG_H
|
|
|
|
#define QBIBTEXDIALOG_H
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-09-24 13:57:09 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2001-08-26 03:20:52 +00:00
|
|
|
#include "ui/QBibtexDialogBase.h"
|
|
|
|
|
|
|
|
class QBibtex;
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
class QBibtexDialog : public QBibtexDialogBase {
|
2002-09-24 13:57:09 +00:00
|
|
|
Q_OBJECT
|
2001-08-26 03:20:52 +00:00
|
|
|
public:
|
|
|
|
QBibtexDialog(QBibtex * form);
|
|
|
|
protected slots:
|
|
|
|
virtual void change_adaptor();
|
|
|
|
virtual void browsePressed();
|
|
|
|
virtual void addPressed();
|
2001-08-27 20:41:45 +00:00
|
|
|
virtual void deletePressed();
|
2001-08-26 03:20:52 +00:00
|
|
|
virtual void styleChanged(const QString &);
|
2002-03-21 21:21:28 +00:00
|
|
|
virtual void databaseChanged();
|
2001-08-26 03:20:52 +00:00
|
|
|
protected:
|
|
|
|
virtual void closeEvent(QCloseEvent * e);
|
|
|
|
private:
|
|
|
|
QBibtex * form_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QBIBTEXDIALOG_H
|