]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormShowFile.h
Bugfixes: checkboxes to radiobuttons (from J�rgen S) and remove a little
[lyx.git] / src / frontends / xforms / FormShowFile.h
1 // -*- C++ -*-
2
3 /*
4  * FormShowFile.h
5  *
6  * (C) 2001 LyX Team
7  * \author Herbert Voss <voss@perce.de>
8  */
9
10 #ifndef FORMSHOWFILE_H
11 #define FORMSHOWFILE_H
12
13 #ifdef __GNUG__
14 #pragma interface
15 #endif
16
17 #include "FormBrowser.h"
18
19 class ControlShowFile;
20
21 /**
22  * This class provides an XForms implementation of a dialog to browse through a
23  * Help file.
24  */
25 class FormShowFile : public FormCB<ControlShowFile, FormBrowser> {
26 public:
27         ///
28         FormShowFile(ControlShowFile &);
29
30         // Functions accessible to the Controller.
31
32         /// Set the Params variable for the Controller.
33         virtual void apply() {}
34         /// Update dialog before/whilst showing it.
35         virtual void update();
36 };
37
38 #endif // FORMSHOWFILE_H