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