]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormMathsPanel.h
Yet more dialog tweaking from Rob.
[lyx.git] / src / frontends / xforms / FormMathsPanel.h
index 75a6202e244493b116a399e0c31d51904d4569dd..617922f31eb54a3e49025aecad1d0f9f12aecbab 100644 (file)
@@ -1,12 +1,14 @@
 // -*- C++ -*-
 /**
  * \file FormMathsPanel.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_MATHSPANEL_H
@@ -18,8 +20,8 @@
 #pragma interface
 #endif
 
+#include "MathsCallbacks.h"
 #include "FormBaseDeprecated.h"
-#include "MathsSymbols.h"
 
 #include <boost/scoped_ptr.hpp>
 
@@ -30,7 +32,7 @@ class FormMathsMatrix;
 class FormMathsSpace;
 class FormMathsStyle;
 class FormMathsSub;
-struct FD_form_maths_panel;
+struct FD_maths_panel;
 
 /**
  * This class provides an XForms implementation of the maths panel.
@@ -38,13 +40,13 @@ struct FD_form_maths_panel;
 class FormMathsPanel : public FormBaseBD {
 public:
        ///
-       FormMathsPanel(LyXView *, Dialogs *);
+       FormMathsPanel(LyXView &, Dialogs &);
        ///
        void setActive(FormMathsSub *) const;
-       /// dispatch a symbol insert
-       void insertSymbol(string const & sym, bool bs = true) const;
        /// dispatch an LFUN:
        void dispatchFunc(kb_action action) const;
+       /// dispatch a symbol insert
+       void insertSymbol(string const & sym, bool bs = true) const;
 private:
        /// Pointer to the actual instantiation of the ButtonController.
        virtual xformsBC & bc();
@@ -57,15 +59,12 @@ private:
        /// Pointer to the actual instantiation of the xforms form
        virtual FL_FORM * form() const;
 
-       // build the panels
-       FD_form_maths_panel * build_maths_panel();
+       // Real GUI implementation
+       boost::scoped_ptr<FD_maths_panel> dialog_;
 
        /// send LFUN_MATH_DISPLAY
        void mathDisplay() const;
 
-       // Real GUI implementation
-       boost::scoped_ptr<FD_form_maths_panel> dialog_;
-
        /// Subdialogs
        boost::scoped_ptr<FormMathsDeco>   deco_;
        boost::scoped_ptr<FormMathsDelim>  delim_;
@@ -98,8 +97,8 @@ class FormMathsSub : public FormBaseBD {
 
 public:
        ///
-       FormMathsSub(LyXView *, Dialogs *, FormMathsPanel const &,
-                    string const &, bool allowResize=true);
+       FormMathsSub(LyXView &, Dialogs &, FormMathsPanel const &,
+                    string const &, bool allowResize = true);
 
 protected:
        /// Pointer to the actual instantiation of the ButtonController.