2001-02-06 17:41:42 +00:00
|
|
|
// -*- C++ -*-
|
2002-09-05 14:10:50 +00:00
|
|
|
/**
|
2001-02-06 17:41:42 +00:00
|
|
|
* FormLog.h
|
2002-09-05 15:14:23 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2001-02-06 17:41:42 +00:00
|
|
|
*
|
2002-09-05 14:10:50 +00:00
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2001-02-06 17:41:42 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FORMLOG_H
|
|
|
|
#define FORMLOG_H
|
|
|
|
|
|
|
|
|
2001-03-20 10:14:03 +00:00
|
|
|
#include "FormBrowser.h"
|
|
|
|
|
|
|
|
class ControlLog;
|
2001-02-06 17:41:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This class provides an XForms implementation of the LaTeX log dialog
|
|
|
|
* for viewing the last LaTeX log file.
|
|
|
|
*/
|
2001-03-20 10:14:03 +00:00
|
|
|
class FormLog : public FormCB<ControlLog, FormBrowser> {
|
2001-02-06 17:41:42 +00:00
|
|
|
public:
|
2001-03-15 13:37:04 +00:00
|
|
|
///
|
2002-08-12 14:28:43 +00:00
|
|
|
FormLog();
|
2001-03-20 10:14:03 +00:00
|
|
|
|
|
|
|
// Functions accessible to the Controller.
|
|
|
|
|
|
|
|
/// Set the Params variable for the Controller.
|
|
|
|
virtual void apply() {}
|
|
|
|
/// Update dialog before/whilst showing it.
|
2001-02-06 17:41:42 +00:00
|
|
|
virtual void update();
|
|
|
|
};
|
|
|
|
|
2001-03-20 10:14:03 +00:00
|
|
|
#endif // FORMLOG_H
|