]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormShowFile.h
dont use pragma impementation and interface anymore
[lyx.git] / src / frontends / xforms / FormShowFile.h
1 // -*- C++ -*-
2 /**
3  * \file FormShowFile.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Herbert Voss
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef FORMSHOWFILE_H
13 #define FORMSHOWFILE_H
14
15
16 #include "FormBrowser.h"
17
18 class ControlShowFile;
19
20 /**
21  * This class provides an XForms implementation of a dialog to browse through a
22  * Help file.
23  */
24 class FormShowFile : public FormCB<ControlShowFile, FormBrowser> {
25 public:
26         ///
27         FormShowFile();
28
29         // Functions accessible to the Controller.
30
31         /// Set the Params variable for the Controller.
32         virtual void apply() {}
33         /// Update dialog before/whilst showing it.
34         virtual void update();
35 };
36
37 #endif // FORMSHOWFILE_H