]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormLog.h
Merging BRANCH_MVC back into HEAD.
[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 #include "FormBaseDeprecated.h"
13 #include "FormBrowser.h"
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 class LyXView;
20 class Dialogs;
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 FormBrowser {
27 public:
28         ///
29         FormLog(LyXView *, Dialogs *);
30 private:
31         /// Update the dialog.
32         virtual void update();
33 };
34
35 #endif