]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QIncludeDialog.h
Lots and lots of little trivial bits.
[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
26 public:
27         QIncludeDialog(QInclude * form);
28
29         void updateLists();
30
31         virtual void show();
32
33 protected slots:
34         virtual void change_adaptor();
35         virtual void loadClicked();
36         virtual void browseClicked();
37         virtual void typeChanged(int v);
38
39 protected:
40         virtual void closeEvent(QCloseEvent * e);
41
42 private:
43         QInclude * form_;
44 };
45
46 #endif // QINCLUDEDIALOG_H