lyx_mirror/src/frontends/qt2/QBibtexDialog.h
John Levon 329e1efdd0 Juergen's last bibtex patch
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5842 a592a061-630c-0410-9148-cb99ea01b6c8
2002-12-17 17:28:04 +00:00

42 lines
847 B
C++

// -*- C++ -*-
/**
* \file QBibtexDialog.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QBIBTEXDIALOG_H
#define QBIBTEXDIALOG_H
#ifdef __GNUG__
#pragma interface
#endif
#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 browseBibPressed();
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