]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormLog.h
dont use pragma impementation and interface anymore
[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
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();
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