]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormLog.h
Introduce LFUN_PRINT.
[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 class ControlLog;
18
19 /**
20  * This class provides an XForms implementation of the LaTeX log dialog
21  * for viewing the last LaTeX log file.
22  */
23 class FormLog : public FormController<ControlLog, FormBrowser> {
24 public:
25         ///
26         FormLog(Dialog &);
27
28         // Functions accessible to the Controller.
29
30         /// Set the Params variable for the Controller.
31         virtual void apply() {}
32         /// Update dialog before/whilst showing it.
33         virtual void update();
34 };
35
36 #endif // FORMLOG_H