]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormShowFile.h
Yet more dialog tweaking from Rob.
[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 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "FormBrowser.h"
20
21 class ControlShowFile;
22
23 /**
24  * This class provides an XForms implementation of a dialog to browse through a
25  * Help file.
26  */
27 class FormShowFile : public FormCB<ControlShowFile, FormBrowser> {
28 public:
29         ///
30         FormShowFile();
31
32         // Functions accessible to the Controller.
33
34         /// Set the Params variable for the Controller.
35         virtual void apply() {}
36         /// Update dialog before/whilst showing it.
37         virtual void update();
38 };
39
40 #endif // FORMSHOWFILE_H