]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QIndexDialog.h
Get rid of the static_casts.
[lyx.git] / src / frontends / qt2 / QIndexDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QIndexDialog.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 QINDEXDIALOG_H
13 #define QINDEXDIALOG_H
14
15
16 #include "ui/QIndexDialogBase.h"
17
18 class QIndex;
19
20 class QIndexDialog : public QIndexDialogBase {
21         Q_OBJECT
22 public:
23         QIndexDialog(QIndex * form);
24
25         virtual void show();
26 protected slots:
27         virtual void change_adaptor();
28 protected:
29         virtual void closeEvent(QCloseEvent * e);
30 private:
31         QIndex * form_;
32 };
33
34 #endif // QINDEXDIALOG_H