]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormMathsSpace.h
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / FormMathsSpace.h
index a15338b70058994c1a75cfd2b98b884677bedea9..f68c1c6638019284c0122b5284ef061978fdebfd 100644 (file)
@@ -1,51 +1,44 @@
 // -*- C++ -*-
 /**
  * \file FormMathsSpace.h
- * Copyright 2001 The LyX Team.
- * See the file COPYING.
+ * 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, moz@compsoc.man.ac.uk
- * \author Angus Leeming, a.leeming@ic.ac.uk
+ * \author John Levon
+ * \author Angus Leeming
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef FORM_MATHSSPACE_H
 #define FORM_MATHSSPACE_H
 
-#include <boost/smart_ptr.hpp>
 
-#ifdef __GNUG_
-#pragma interface
-#endif
+#include "FormDialogView.h"
 
-#include "FormMathsPanel.h"
 
-struct FD_form_maths_space;
+class ControlMath;
+struct FD_maths_space;
 
 /**
  * This class provides an XForms implementation of the maths space.
  */
-class FormMathsSpace : public FormMathsSub {
+class FormMathsSpace
+       : public FormController<ControlMath, FormView<FD_maths_space> > {
 public:
        ///
-       FormMathsSpace(LyXView *, Dialogs * , FormMathsPanel const &);
+       FormMathsSpace(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_space * build_maths_space();
-
-       // Real GUI implementation
-       boost::scoped_ptr<FD_form_maths_space> dialog_;
+       ///
+       virtual void build();
+       ///
+       virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
+       /// Not needed.
+       virtual void update() {}
 
        /// The current choice.
        int space_;