lyx_mirror/src/frontends/xforms/FormError.h
Angus Leeming e4f6bf299b s,xforms/\(FormFooBar\),\1, in the title blurb
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6299 a592a061-630c-0410-9148-cb99ea01b6c8
2003-02-27 15:57:11 +00:00

38 lines
734 B
C++

// -*- C++ -*-
/**
* \file FormError.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Angus Leeming
*
* Full author contact details are available in file CREDITS
*/
#ifndef FORMERROR_H
#define FORMERROR_H
#include "FormDialogView.h"
class ControlError;
struct FD_error;
/** This class provides an XForms implementation of the Error Dialog.
*/
class FormError : public FormController<ControlError, FormView<FD_error> > {
public:
/// Constructor
FormError(Dialog &);
private:
/// not needed.
virtual void apply() {}
/// Build the dialog
virtual void build();
/// Update dialog before showing it
virtual void update();
};
#endif // FORMERROR_H