]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QRefDialog.h
Lots and lots of little trivial bits.
[lyx.git] / src / frontends / qt2 / QRefDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QRefDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Kalle Dalheimer
8  * \author John Levon
9  *
10  * Full author contact details are available in file CREDITS
11  */
12
13 #ifndef QREFDIALOG_H
14 #define QREFDIALOG_H
15
16 #ifdef __GNUG__
17 #pragma interface
18 #endif
19
20 #include "ui/QRefDialogBase.h"
21
22 class QRef;
23
24 class QRefDialog : public QRefDialogBase
25 { Q_OBJECT
26
27 public:
28         QRefDialog(QRef * form);
29
30 public slots:
31         void changed_adaptor();
32         void gotoClicked();
33         void refHighlighted(const QString &);
34         void refSelected(const QString &);
35         void sortToggled(bool);
36         void updateClicked();
37
38 protected:
39         void closeEvent(QCloseEvent * e);
40
41 private:
42         QRef * form_;
43 };
44
45 #endif // QREFDIALOG_H