]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormError.h
Bugfixes: checkboxes to radiobuttons (from J�rgen S) and remove a little
[lyx.git] / src / frontends / xforms / FormError.h
index 522ac134c7717b3080e32bdffb7bda89ba7df34e..d927e02d4558204118bdb94a1aaae333e1dcc8da 100644 (file)
@@ -1,12 +1,16 @@
 // -*- C++ -*-
-/* This file is part of
+/*
+ * \file FormError.h
+ * This file is part of
  * ====================================================== 
  *
  *           LyX, The Document Processor
  *
- *           Copyright 2000 The LyX Team.
+ *           Copyright 2000-2001 The LyX Team.
  *
  * ======================================================
+ *
+ * \author Angus Leeming, a.leeming@.ac.uk
  */
 
 #ifndef FORMERROR_H
 #endif
 
 #include "FormBase.h"
-#include "insets/inseterror.h"
 
+class ControlError;
 struct FD_form_error;
 
-/** This class provides an XForms implementation of the FormError Dialog.
+/** This class provides an XForms implementation of the Error Dialog.
  */
-class FormError : public FormBase {
+class FormError : public FormCB<ControlError, FormDB<FD_form_error> > {
 public:
        /// Constructor
-       FormError(LyXView *, Dialogs *);
-       ///
-       ~FormError();
+       FormError(ControlError &);
+
 private:
-       /// Slot launching dialog to an existing inset
-       void showInset( InsetError * const );
-       /// Update dialog before showing it
-       void update();
+       /// not needed.
+       virtual void apply() {}
        /// Build the dialog
-       void build();
-       /// Reset data when hide() is called
-       void clearStore();
-       /// Pointer to the actual instantiation of the xform's form
-       FL_FORM * const form() const;
+       virtual void build();
+       /// Update dialog before showing it
+       virtual void update();
+
        /// Fdesign generated method
        FD_form_error * build_error();
-
-       /// Real GUI implementation.
-       FD_form_error * dialog_;
-       /// inset::hide connection.
-       Connection ih_;
-       /// the error message
-       string message_;
 };
 
-#endif
+#endif // FORMERROR_H