]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormMathsStyle.h
remove defaults stuff, let Qt handle no toolbar
[lyx.git] / src / frontends / xforms / FormMathsStyle.h
index c0ede75e5093f687522ec194c875f4fe37547f0e..1a64bc5dced853966edf26dc35e7289e0434e01d 100644 (file)
@@ -1,48 +1,42 @@
 // -*- C++ -*-
 /**
  * \file FormMathsStyle.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 <leeming@lyx.org>
+ * \author John Levon
+ * \author Angus Leeming
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef FORM_MATHSSTYLE_H
 #define FORM_MATHSSTYLE_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-#include "FormMathsPanel.h"
 
-#include <boost/scoped_ptr.hpp>
+#include "FormBase.h"
 
+class ControlMathSub;
 struct FD_maths_style;
 
 /**
  * This class provides an XForms implementation of the maths style.
  */
-class FormMathsStyle : public FormMathsSub {
+class FormMathsStyle : public FormCB<ControlMathSub, FormDB<FD_maths_style> > {
 public:
        ///
-       FormMathsStyle(LyXView &, Dialogs &, FormMathsPanel const &);
+       FormMathsStyle();
 
 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_style> dialog_;
+       ///
+       virtual void build();
+       ///
+       virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
+       /// Not needed.
+       virtual void update() {}
 
        /// The current choice.
        int style_;