]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormLog.h
Really dull and boring header shit
[lyx.git] / src / frontends / xforms / FormLog.h
1 // -*- C++ -*-
2 /**
3  * FormLog.h
4  * Read the file COPYING
5  *
6  * \author John Levon
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #ifndef FORMLOG_H
12 #define FORMLOG_H
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #include "FormBrowser.h"
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 FormCB<ControlLog, FormBrowser> {
27 public:
28         ///
29         FormLog();
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 // FORMLOG_H