]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormMathsDeco.h
Yet more dialog tweaking from Rob.
[lyx.git] / src / frontends / xforms / FormMathsDeco.h
index d8dbcaaa635df6191618cd66cff04346f5caabea..ac17572a5e9db60e27c49b91a055389aa01530c3 100644 (file)
@@ -1,34 +1,36 @@
 // -*- C++ -*-
-/** 
+/**
  * \file FormMathsDeco.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_MATHSDECO_H
 #define FORM_MATHSDECO_H
 
-#include <boost/smart_ptr.hpp>
-
-#ifdef __GNUG_
+#ifdef __GNUG__
 #pragma interface
 #endif
 
 #include "FormMathsPanel.h"
 
-struct FD_form_maths_deco;
+#include <boost/scoped_ptr.hpp>
+
+struct FD_maths_deco;
 
-/** 
+/**
  * This class provides an XForms implementation of the maths deco.
  */
 class FormMathsDeco : public FormMathsSub {
 public:
        ///
-       FormMathsDeco(LyXView *, Dialogs *, FormMathsPanel const &);
+       FormMathsDeco(LyXView &, Dialogs &, FormMathsPanel const &);
 
 private:
        /// Build the dialog
@@ -36,19 +38,16 @@ private:
        /// Apply from dialog (modify or create inset)
        virtual void apply();
        /// Input selection:
-       virtual bool FormMathsDeco::input(FL_OBJECT *, long);
+       virtual bool input(FL_OBJECT *, long);
 
        /// Pointer to the actual instantiation of the xforms form
        virtual FL_FORM * form() const;
 
-       // build the form
-       FD_form_maths_deco * build_maths_deco();
-       
        // Real GUI implementation
-       boost::scoped_ptr<FD_form_maths_deco> dialog_;
+       boost::scoped_ptr<FD_maths_deco> dialog_;
 
        /// Current choice
-       short deco_;
+       int deco_;
 
 };