mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
39 lines
630 B
C
39 lines
630 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 styleChanged(const QString &);
|
||
|
|
||
|
|
||
|
protected:
|
||
|
virtual void closeEvent(QCloseEvent * e);
|
||
|
|
||
|
private:
|
||
|
QBibtex * form_;
|
||
|
};
|
||
|
|
||
|
#endif // QBIBTEXDIALOG_H
|