]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QRefDialog.h
The big renaming. Yowser.
[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  */
8
9 #ifndef QREFDIALOG_H
10 #define QREFDIALOG_H
11  
12 #include <config.h>
13  
14 #include "ui/QRefDialogBase.h"
15
16 class QRef;
17
18 class QRefDialog : public QRefDialogBase
19 { Q_OBJECT
20
21 public:
22         QRefDialog(QRef * form, QWidget * parent = 0, const char * name = 0, bool modal = FALSE, WFlags fl = 0);
23         ~QRefDialog();
24
25 public slots:
26         void apply_adaptor();
27         void goto_adaptor();
28         void highlight_adaptor(const QString &);
29         void close_adaptor();
30         void select_adaptor(const QString &);
31         void sort_adaptor(bool);
32         void update_adaptor();
33
34 protected:
35         void closeEvent(QCloseEvent * e);
36
37 private:
38         QRef * form_;
39 };
40
41 #endif // QREFDIALOG_H