]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormError.h
Really dull and boring header shit
[lyx.git] / src / frontends / xforms / FormError.h
1 // -*- C++ -*-
2 /**
3  * \file xforms/FormError.h
4  * Read the file COPYING
5  *
6  * \author Angus Leeming 
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #ifndef FORMERROR_H
12 #define FORMERROR_H
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #include "FormBase.h"
19
20 class ControlError;
21 struct FD_error;
22
23 /** This class provides an XForms implementation of the Error Dialog.
24  */
25 class FormError : public FormCB<ControlError, FormDB<FD_error> > {
26 public:
27         /// Constructor
28         FormError();
29 private:
30         /// not needed.
31         virtual void apply() {}
32         /// Build the dialog
33         virtual void build();
34         /// Update dialog before showing it
35         virtual void update();
36 };
37
38 #endif // FORMERROR_H