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