]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormMathsDelim.h
fix crash with "save as"
[lyx.git] / src / frontends / xforms / FormMathsDelim.h
index 26e63708b721489ff1e556ef6040a5bd7bcd2120..6ac0232a66ae9f37c0e53d5238558ba823941d8c 100644 (file)
@@ -1,7 +1,8 @@
 // -*- C++ -*-
 /**
  * \file FormMathsDelim.h
- * 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
 #pragma interface
 #endif
 
-#include "FormMathsPanel.h"
-
-#include <boost/scoped_ptr.hpp>
+#include "FormBase.h"
 
+class ControlMathSub;
 struct FD_maths_delim;
 
 /**
  * This class provides an XForms implementation of the maths delim.
  */
-class FormMathsDelim : public FormMathsSub {
+class FormMathsDelim : public FormCB<ControlMathSub, FormDB<FD_maths_delim> > {
 public:
        ///
-       FormMathsDelim(LyXView &, Dialogs &, FormMathsPanel const &);
+       FormMathsDelim();
 
 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;
-
-       // Real GUI implementation
-       boost::scoped_ptr<FD_maths_delim> dialog_;
+       ///
+       virtual void build();
+       ///
+       virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
+       ///
+       virtual void update();
 };
 
 #endif //  FORM_MATHSDELIM_H