]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormMathsDelim.h
get rid of broken_header.h and some unneeded tests
[lyx.git] / src / frontends / xforms / FormMathsDelim.h
index efacd5c6b68d890f443abcf79b8748ac0397e92b..6563896b25e3f53c9d6bd60f3bd28659653b6110 100644 (file)
@@ -1,50 +1,48 @@
-/** 
+// -*- C++ -*-
+/**
  * \file FormMathsDelim.h
- * Copyright 2001 The LyX Team.
- * See the file COPYING.
- * 
- * \author Alejandro Aguilar Sierra 
- * \author John Levon, moz@compsoc.man.ac.uk
- * \author Angus Leeming, a.leeming@ic.ac.uk
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Alejandro Aguilar Sierra
+ * \author John Levon
+ * \author Angus Leeming
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef FORM_MATHSDELIM_H
 #define FORM_MATHSDELIM_H
 
-#include <boost/smart_ptr.hpp>
+#include "FormDialogView.h"
 
-#ifdef __GNUG_
-#pragma interface
-#endif
+namespace lyx {
+namespace frontend {
 
-#include "FormMathsPanel.h"
+class ControlMath;
+struct FD_maths_delim;
 
-struct FD_form_maths_delim;
-
-/** 
+/**
  * This class provides an XForms implementation of the maths delim.
  */
-class FormMathsDelim : public FormMathsSub {
+class FormMathsDelim
+       : public FormController<ControlMath, FormView<FD_maths_delim> > {
 public:
        ///
-       FormMathsDelim(LyXView *, Dialogs *, FormMathsPanel const &);
+       FormMathsDelim(Dialog &);
 
 private:
-       /// Build the dialog
-       virtual void build();
-       /// input handler
-       virtual bool input(FL_OBJECT *, long);
-       /// Apply from dialog (modify or create inset)
+       ///
        virtual void apply();
-
-       /// Pointer to the actual instantiation of the xforms form
-       virtual FL_FORM * form() const;
-
-       // build the form
-       FD_form_maths_delim * build_maths_delim();
-       
-       // Real GUI implementation
-       boost::scoped_ptr<FD_form_maths_delim> dialog_;
+       ///
+       virtual void build();
+       ///
+       virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
+       ///
+       virtual void update();
 };
 
+} // namespace frontend
+} // namespace lyx
+
 #endif //  FORM_MATHSDELIM_H