2001-08-26 15:34:36 +00:00
|
|
|
/**
|
|
|
|
* \file QBibitemDialog.h
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QBIBITEMDIALOG_H
|
|
|
|
#define QBIBITEMDIALOG_H
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2001-08-26 15:34:36 +00:00
|
|
|
#include "ui/QBibitemDialogBase.h"
|
|
|
|
|
|
|
|
class QBibitem;
|
|
|
|
|
|
|
|
class QBibitemDialog : public QBibitemDialogBase
|
|
|
|
{ Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
QBibitemDialog(QBibitem * form);
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
virtual void change_adaptor();
|
|
|
|
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2001-08-26 15:34:36 +00:00
|
|
|
protected:
|
|
|
|
virtual void closeEvent(QCloseEvent * e);
|
|
|
|
|
|
|
|
private:
|
|
|
|
QBibitem * form_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QBIBITEMDIALOG_H
|