]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QShowFileDialog.h
Minipage is no more (long live the box inset)
[lyx.git] / src / frontends / qt2 / QShowFileDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QShowFileDialog.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 QSHOWFILEDIALOG_H
13 #define QSHOWFILEDIALOG_H
14
15
16 #include "ui/QShowFileDialogBase.h"
17
18 class QShowFile;
19
20 class QShowFileDialog : public QShowFileDialogBase {
21         Q_OBJECT
22 public:
23         QShowFileDialog(QShowFile * form);
24 protected:
25         virtual void closeEvent(QCloseEvent * e);
26 private:
27         QShowFile * form_;
28 };
29
30 #endif // QSHOWFILEDIALOG_H