]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QIndexDialog.h
better selection and scrolling behaviour
[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 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "ui/QIndexDialogBase.h"
20
21 class QIndex;
22
23 class QIndexDialog : public QIndexDialogBase {
24         Q_OBJECT
25 public:
26         QIndexDialog(QIndex * form);
27
28         virtual void show();
29 protected slots:
30         virtual void change_adaptor();
31 protected:
32         virtual void closeEvent(QCloseEvent * e);
33 private:
34         QIndex * form_;
35 };
36
37 #endif // QINDEXDIALOG_H