]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QIndexDialog.h
The big renaming. Yowser.
[lyx.git] / src / frontends / qt2 / QIndexDialog.h
1 /**
2  * \file QIndexDialog.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 QINDEXDIALOG_H
10 #define QINDEXDIALOG_H
11  
12 #include <config.h>
13  
14 #include "ui/QIndexDialogBase.h"
15
16 class QIndex;
17
18 class QIndexDialog : public QIndexDialogBase
19 { Q_OBJECT
20
21 public:
22         QIndexDialog(QIndex * form, QWidget * parent = 0, const char * name = 0, bool modal = FALSE, WFlags fl = 0);
23         ~QIndexDialog();
24
25 public slots:
26         void apply_adaptor();
27         void close_adaptor();
28
29 protected:
30         void closeEvent(QCloseEvent * e);
31
32 private:
33         QIndex * form_;
34 };
35
36 #endif // QINDEXDIALOG_H