]> git.lyx.org Git - features.git/blob - src/frontends/qt3/QShowFileDialog.h
* Rename src/frontends/qt2 to src/frontends/qt3,
[features.git] / src / frontends / qt3 / 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 #include "ui/QShowFileDialogBase.h"
16
17 namespace lyx {
18 namespace frontend {
19
20 class QShowFile;
21
22 class QShowFileDialog : public QShowFileDialogBase {
23         Q_OBJECT
24 public:
25         QShowFileDialog(QShowFile * form);
26 protected:
27         virtual void closeEvent(QCloseEvent * e);
28 private:
29         QShowFile * form_;
30 };
31
32 } // namespace frontend
33 } // namespace lyx
34
35 #endif // QSHOWFILEDIALOG_H