]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QTexinfoDialog.h
some tabular fixes for the problems reported by Helge
[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 #include "ui/QTexinfoDialogBase.h"
16
17 namespace lyx {
18 namespace frontend {
19
20 class QTexinfo;
21
22 class QTexinfoDialog : public QTexinfoDialogBase {
23         Q_OBJECT
24 public:
25         QTexinfoDialog(QTexinfo * form);
26 protected slots:
27         virtual void change_adaptor();
28         virtual void rescanClicked();
29         virtual void viewClicked();
30         virtual void update();
31         virtual void enableViewPB();
32 protected:
33         virtual void closeEvent(QCloseEvent * e);
34 private:
35         QTexinfo * form_;
36 };
37
38 } // namespace frontend
39 } // namespace lyx
40
41 #endif // QTEXINFODIALOG_H