]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormLog.h
fix crash with "save as"
[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 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "FormBrowser.h"
20
21 class ControlLog;
22
23 /**
24  * This class provides an XForms implementation of the LaTeX log dialog
25  * for viewing the last LaTeX log file.
26  */
27 class FormLog : public FormCB<ControlLog, FormBrowser> {
28 public:
29         ///
30         FormLog();
31
32         // Functions accessible to the Controller.
33
34         /// Set the Params variable for the Controller.
35         virtual void apply() {}
36         /// Update dialog before/whilst showing it.
37         virtual void update();
38 };
39
40 #endif // FORMLOG_H