]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormError.h
remove defaults stuff, let Qt handle no toolbar
[lyx.git] / src / frontends / xforms / FormError.h
index cfb300596792bf5b6816f08eee3615ddb91d14c6..fc95d9a2e3bc50df6eefe5c3573fce378a280d4e 100644 (file)
@@ -1,54 +1,37 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
+/**
+ * \file FormError.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Angus Leeming
  *
- *           Copyright 2000 The LyX Team.
- *
- * ======================================================
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef FORMERROR_H
 #define FORMERROR_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-#include "FormBase.h"
+#include "FormDialogView.h"
+
 
-class InsetError;
-struct FD_form_error;
+class ControlError;
+struct FD_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 FormController<ControlError, FormView<FD_error> > {
 public:
        /// Constructor
-       FormError(LyXView *, Dialogs *);
-       ///
-       ~FormError();
+       FormError(Dialog &);
 private:
-       /// Slot launching dialog to an existing inset
-       void showInset( InsetError * );
-       /// Update dialog before showing it
-       virtual void update();
+       /// not needed.
+       virtual void apply() {}
        /// Build the dialog
        virtual void build();
-       /// Reset data when hide() is called
-       virtual void clearStore();
-       /// Pointer to the actual instantiation of the xform's form
-       virtual FL_FORM * form() const;
-       /// 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_;
+       /// Update dialog before showing it
+       virtual void update();
 };
 
-#endif
+#endif // FORMERROR_H