]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QBibitemDialog.h
bibitem dialog for Qt2. Took longer to build than to write ;)
[lyx.git] / src / frontends / qt2 / QBibitemDialog.h
1 /**
2  * \file QBibitemDialog.h
3  * Copyright 2001 the LyX Team
4  * Read the file COPYING
5  *
6  * \author John Levon <moz@compsoc.man.ac.uk>
7  */
8
9 #ifndef QBIBITEMDIALOG_H
10 #define QBIBITEMDIALOG_H
11  
12 #include <config.h>
13  
14 #include "ui/QBibitemDialogBase.h"
15
16 class QBibitem;
17
18 class QBibitemDialog : public QBibitemDialogBase
19 { Q_OBJECT
20
21 public:
22         QBibitemDialog(QBibitem * form);
23
24 protected slots:
25         virtual void change_adaptor();
26
27  
28 protected:
29         virtual void closeEvent(QCloseEvent * e);
30
31 private:
32         QBibitem * form_;
33 };
34
35 #endif // QBIBITEMDIALOG_H