lyx_mirror/src/frontends/xforms/FormLog.h

36 lines
535 B
C
Raw Normal View History

// -*- C++ -*-
/*
* FormLog.h
*
* (C) 2001 LyX Team
* John Levon, moz@compsoc.man.ac.uk
*/
#ifndef FORMLOG_H
#define FORMLOG_H
#include "FormBaseDeprecated.h"
#include "FormBrowser.h"
#ifdef __GNUG__
#pragma interface
#endif
class LyXView;
class Dialogs;
/**
* This class provides an XForms implementation of the LaTeX log dialog
* for viewing the last LaTeX log file.
*/
class FormLog : public FormBrowser {
public:
///
FormLog(LyXView *, Dialogs *);
private:
/// Update the dialog.
virtual void update();
};
#endif