]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QTexinfoDialog.h
better selection and scrolling behaviour
[lyx.git] / src / frontends / qt2 / QTexinfoDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QTexinfoDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Edwin Leuven
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef QTEXINFODIALOG_H
13 #define QTEXINFODIALOG_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "ui/QTexinfoDialogBase.h"
20
21 class QTexinfo;
22
23 class QTexinfoDialog : public QTexinfoDialogBase {
24         Q_OBJECT
25 public:
26         QTexinfoDialog(QTexinfo * form);
27 protected slots:
28         virtual void change_adaptor();
29         virtual void rescanClicked();
30         virtual void viewClicked();
31         virtual void update();
32         virtual void enableViewPB();
33 protected:
34         virtual void closeEvent(QCloseEvent * e);
35 private:
36         QTexinfo * form_;
37 };
38
39 #endif // QTEXINFODIALOG_H