]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QShowFile.h
namespace grfx -> lyx::graphics
[lyx.git] / src / frontends / qt2 / QShowFile.h
1 // -*- C++ -*-
2 /**
3  * \file QShowFile.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 QSHOWFILE_H
13 #define QSHOWFILE_H
14
15
16 #include "QDialogView.h"
17
18
19 class ControlShowFile;
20 class QShowFileDialog;
21
22
23 class QShowFile
24         : public QController<ControlShowFile, QView<QShowFileDialog> >
25 {
26 public:
27         friend class QShowFileDialog;
28
29         QShowFile(Dialog &);
30 private:
31         /// Apply changes
32         virtual void apply() {}
33         /// update
34         virtual void update_contents();
35         /// build the dialog
36         virtual void build_dialog();
37 };
38
39 #endif // QSHOWFILE_H