]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QIncludeDialog.h
partial fonts fix. Like Juergen said we really need our own dialog.
[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 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "ui/QIncludeDialogBase.h"
20
21 class QInclude;
22
23 class QIncludeDialog : public QIncludeDialogBase {
24         Q_OBJECT
25 public:
26         QIncludeDialog(QInclude * form);
27
28         void updateLists();
29
30         virtual void show();
31 protected slots:
32         virtual void change_adaptor();
33         virtual void loadClicked();
34         virtual void browseClicked();
35         virtual void typeChanged(int v);
36 protected:
37         virtual void closeEvent(QCloseEvent * e);
38 private:
39         QInclude * form_;
40 };
41
42 #endif // QINCLUDEDIALOG_H