]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QIncludeDialog.h
fix math fonts with LyX/Mac
[lyx.git] / src / frontends / qt2 / QIncludeDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QIncludeDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef QINCLUDEDIALOG_H
13 #define QINCLUDEDIALOG_H
14
15 #include "ui/QIncludeDialogBase.h"
16
17 namespace lyx {
18 namespace frontend {
19
20 class QInclude;
21
22 class QIncludeDialog : public QIncludeDialogBase {
23         Q_OBJECT
24 public:
25         QIncludeDialog(QInclude * form);
26
27         void updateLists();
28
29         virtual void show();
30 protected slots:
31         virtual void change_adaptor();
32         virtual void loadClicked();
33         virtual void browseClicked();
34         virtual void typeChanged(int v);
35 protected:
36         virtual void closeEvent(QCloseEvent * e);
37 private:
38         QInclude * form_;
39 };
40
41 } // namespace frontend
42 } // namespace lyx
43
44 #endif // QINCLUDEDIALOG_H