]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QRefDialog.h
namespace grfx -> lyx::graphics
[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
17 #include "ui/QRefDialogBase.h"
18
19 class QRef;
20
21 class QRefDialog : public QRefDialogBase {
22         Q_OBJECT
23 public:
24         QRefDialog(QRef * form);
25
26         virtual void show();
27
28 public slots:
29         void changed_adaptor();
30         void gotoClicked();
31         void refHighlighted(const QString &);
32         void refSelected(const QString &);
33         void sortToggled(bool);
34         void updateClicked();
35
36 protected:
37         void closeEvent(QCloseEvent * e);
38 private:
39         QRef * form_;
40 };
41
42 #endif // QREFDIALOG_H