]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormLog.h
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / xforms / FormLog.h
1 // -*- C++ -*-
2 /**
3  * FormLog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef FORMLOG_H
13 #define FORMLOG_H
14
15 #include "FormBrowser.h"
16
17 namespace lyx {
18 namespace frontend {
19
20 class ControlLog;
21
22 /**
23  * This class provides an XForms implementation of the LaTeX log dialog
24  * for viewing the last LaTeX log file.
25  */
26 class FormLog : public FormController<ControlLog, FormBrowser> {
27 public:
28         ///
29         FormLog(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 // FORMLOG_H