]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormShowFile.h
Change glob() API to accept a dir parameter.
[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 Voß
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef FORMSHOWFILE_H
13 #define FORMSHOWFILE_H
14
15 #include "FormBrowser.h"
16
17 namespace lyx {
18 namespace frontend {
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 FormController<ControlShowFile, FormBrowser> {
27 public:
28         ///
29         FormShowFile(Dialog &);
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 } // namespace frontend
40 } // namespace lyx
41
42 #endif // FORMSHOWFILE_H