]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QBibitemDialog.h
Get rid of the static_casts.
[lyx.git] / src / frontends / qt2 / QBibitemDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QBibitemDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef QBIBITEMDIALOG_H
13 #define QBIBITEMDIALOG_H
14
15
16 #include "ui/QBibitemDialogBase.h"
17
18 class QBibitem;
19
20 class QBibitemDialog : public QBibitemDialogBase {
21         Q_OBJECT
22 public:
23         QBibitemDialog(QBibitem * form);
24 protected slots:
25         virtual void change_adaptor();
26 protected:
27         virtual void closeEvent(QCloseEvent * e);
28 private:
29         QBibitem * form_;
30 };
31
32 #endif // QBIBITEMDIALOG_H