]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QRefDialog.h
ref dialog, more updates (BC stuff should now be OK along with the coming
[lyx.git] / src / frontends / qt2 / QRefDialog.h
1 /**
2  * \file QRefDialog.h
3  * Copyright 2001 the LyX Team
4  * Read the file COPYING
5  *
6  * \author Kalle Dalheimer <kalle@klaralvdalens-datakonsult.se>
7  * \author John Levon <moz@compsoc.man.ac.uk>
8  */
9
10 #ifndef QREFDIALOG_H
11 #define QREFDIALOG_H
12  
13 #include <config.h>
14  
15 #include "ui/QRefDialogBase.h"
16
17 class QRef;
18
19 class QRefDialog : public QRefDialogBase
20 { Q_OBJECT
21
22 public:
23         QRefDialog(QRef * form);
24
25 public slots:
26         void changed_adaptor();
27         void gotoClicked();
28         void refHighlighted(const QString &);
29         void refSelected(const QString &);
30         void sortToggled(bool);
31         void updateClicked();
32
33 protected:
34         void closeEvent(QCloseEvent * e);
35
36 private:
37         QRef * form_;
38 };
39
40 #endif // QREFDIALOG_H