]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiShowFile.h
the fun begins....
[lyx.git] / src / frontends / qt4 / GuiShowFile.h
1 // -*- C++ -*-
2 /**
3  * \file GuiShowFile.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 GUISHOWFILE_H
13 #define GUISHOWFILE_H
14
15 #include "GuiDialog.h"
16 #include "ControlShowFile.h"
17 #include "ui_ShowFileUi.h"
18
19 namespace lyx {
20 namespace frontend {
21
22 class GuiShowFileDialog : public GuiDialog, public Ui::ShowFileUi
23 {
24         Q_OBJECT
25
26 public:
27         GuiShowFileDialog(LyXView & lv);
28
29 private:
30         ///
31         void closeEvent(QCloseEvent * e);
32         /// parent controller
33         ControlShowFile & controller() const;
34         /// update
35         void update_contents();
36 };
37
38 } // namespace frontend
39 } // namespace lyx
40
41 #endif // GUISHOWFILE_H