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