]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormMathsMatrix.h
remove defaults stuff, let Qt handle no toolbar
[lyx.git] / src / frontends / xforms / FormMathsMatrix.h
index 5581f8229f388ca0177342c40addc33d912d886b..fdbd00b27a8f02ca74ebb66560e5483dc244e10e 100644 (file)
@@ -1,52 +1,45 @@
 // -*- C++ -*-
 /**
  * \file FormMathsMatrix.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_MATHSMATRIX_H
 #define FORM_MATHSMATRIX_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-#include "FormMathsPanel.h"
 
-#include <boost/scoped_ptr.hpp>
+#include "FormBase.h"
 
-struct FD_form_maths_matrix;
+class ControlMathSub;
+struct FD_maths_matrix;
 
 /**
  * This class provides an XForms implementation of the maths matrix.
  */
-class FormMathsMatrix : public FormMathsSub {
+class FormMathsMatrix : public FormCB<ControlMathSub, FormDB<FD_maths_matrix> >
+{
 public:
-       FormMathsMatrix(LyXView *, Dialogs *, FormMathsPanel const &);
+       ///
+       FormMathsMatrix();
        ///
        int AlignFilter(char const *, int);
 
 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_matrix * build_maths_matrix();
-
-       // Real GUI implementation
-       boost::scoped_ptr<FD_form_maths_matrix> dialog_;
+       ///
+       virtual void build();
+       ///
+       virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
+       ///
+       virtual void update();
 };
 
 #endif //  FORM_MATHSMATRIX_H