]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormMathsMatrix.h
Yet more dialog tweaking from Rob.
[lyx.git] / src / frontends / xforms / FormMathsMatrix.h
index a6631a5786a1233c8c4588af68dd4aa43598ca69..c54a6d51bb9858a765b1e6fb4046b80fab160905 100644 (file)
@@ -1,33 +1,35 @@
 // -*- C++ -*-
-/** 
+/**
  * \file FormMathsMatrix.h
- * Copyright 2001 The LyX Team.
- * See the file COPYING.
- * 
- * \author Alejandro Aguilar Sierra 
- * \author John Levon, moz@compsoc.man.ac.uk
- * \author Angus Leeming, a.leeming@ic.ac.uk
+ * 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
+ * \author Angus Leeming 
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef FORM_MATHSMATRIX_H
 #define FORM_MATHSMATRIX_H
 
-#include <boost/smart_ptr.hpp>
-
-#ifdef __GNUG_
+#ifdef __GNUG__
 #pragma interface
 #endif
 
 #include "FormMathsPanel.h"
 
-struct FD_form_maths_matrix;
+#include <boost/scoped_ptr.hpp>
+
+struct FD_maths_matrix;
 
-/** 
+/**
  * This class provides an XForms implementation of the maths matrix.
  */
 class FormMathsMatrix : public FormMathsSub {
 public:
-       FormMathsMatrix(LyXView *, Dialogs *, FormMathsPanel const &);
+       FormMathsMatrix(LyXView &, Dialogs &, FormMathsPanel const &);
        ///
        int AlignFilter(char const *, int);
 
@@ -42,11 +44,8 @@ private:
        /// 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_;
+       boost::scoped_ptr<FD_maths_matrix> dialog_;
 };
 
 #endif //  FORM_MATHSMATRIX_H