]> git.lyx.org Git - lyx.git/blob - src/frontends/qt3/QRefDialog.h
Extracted from r14281
[lyx.git] / src / frontends / qt3 / 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 #include "ui/QRefDialogBase.h"
17
18 namespace lyx {
19 namespace frontend {
20
21 class QRef;
22
23 class QRefDialog : public QRefDialogBase {
24         Q_OBJECT
25 public:
26         QRefDialog(QRef * form);
27
28         virtual void show();
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 private:
41         QRef * form_;
42 };
43
44 } // namespace frontend
45 } // namespace lyx
46
47 #endif // QREFDIALOG_H