]> 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 c8c9089390a7258923955b29be3e2cb82944d011..ac17572a5e9db60e27c49b91a055389aa01530c3 100644 (file)
@@ -1,48 +1,54 @@
-/** 
+// -*- 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 popup
+       /// Build the dialog
        virtual void build();
        /// Apply from dialog (modify or create inset)
        virtual void apply();
+       /// Input selection:
+       virtual bool input(FL_OBJECT *, long);
 
        /// Pointer to the actual instantiation of the xforms form
        virtual FL_FORM * form() const;
 
-       // build the popup
-       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
+       int deco_;
+
 };
 
 #endif //  FORM_MATHSDECO_H