]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormError.h
fix crash with "save as"
[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 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "FormBase.h"
20
21 class ControlError;
22 struct FD_error;
23
24 /** This class provides an XForms implementation of the Error Dialog.
25  */
26 class FormError : public FormCB<ControlError, FormDB<FD_error> > {
27 public:
28         /// Constructor
29         FormError();
30 private:
31         /// not needed.
32         virtual void apply() {}
33         /// Build the dialog
34         virtual void build();
35         /// Update dialog before showing it
36         virtual void update();
37 };
38
39 #endif // FORMERROR_H