]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QRefDialog.h
better selection and scrolling behaviour
[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 public:
27         QRefDialog(QRef * form);
28 public slots:
29         void changed_adaptor();
30         void gotoClicked();
31         void refHighlighted(QString const &);
32         void refSelected(QString const &);
33         void sortToggled(bool);
34         void updateClicked();
35 protected:
36         void closeEvent(QCloseEvent * e);
37 private:
38         QRef * form_;
39 };
40
41 #endif // QREFDIALOG_H