]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QShowFile.h
Strip trailing whitespace.
[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 "Qt2Base.h"
17
18 class ControlShowFile;
19 class QShowFileDialog;
20
21
22 class QShowFile
23         : public Qt2CB<ControlShowFile, Qt2DB<QShowFileDialog> >
24 {
25 public:
26         friend class QShowFileDialog;
27
28         QShowFile();
29 private:
30         /// Apply changes
31         virtual void apply() {}
32         /// update
33         virtual void update_contents();
34         /// build the dialog
35         virtual void build_dialog();
36 };
37
38 #endif // QSHOWFILE_H