]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormMathsBitmap.h
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / FormMathsBitmap.h
index 88b2255a9b601650f0f6bf98ec17752998155816..375f4e87769ba21907998fffe4fdde7d422ed9b1 100644 (file)
@@ -8,18 +8,15 @@
  * \author John Levon
  * \author Angus Leeming
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef FORM_MATHSBITMAP_H
 #define FORM_MATHSBITMAP_H
 
-
 #include "FormDialogView.h"
-#include <boost/shared_ptr.hpp>
 #include <vector>
 
-
 struct BitmapStore
 {
        BitmapStore(int nt_in, int nx_in, int ny_in, int bw_in, int bh_in,
@@ -50,13 +47,13 @@ struct FD_maths_bitmap
  * This class provides an XForms implementation of a maths bitmap form.
  */
 
-class ControlMath2;
+class ControlMath;
 
 class FormMathsBitmap
-       : public FormController<ControlMath2, FormView<FD_maths_bitmap> > {
+       : public FormController<ControlMath, FormView<FD_maths_bitmap> > {
 public:
        ///
-       FormMathsBitmap(Dialog &, string const &, std::vector<string> const &);
+       FormMathsBitmap(Dialog &, std::string const &, std::vector<std::string> const &);
        ///
        void addBitmap(BitmapStore const &);
 
@@ -77,9 +74,9 @@ private:
        FL_OBJECT * buildBitmap(BitmapStore const & bmstore);
 
        /// The latex names associated with each symbol
-       std::vector<string> latex_;
+       std::vector<std::string> latex_;
        /// The latex name chosen
-       string latex_chosen_;
+       std::string latex_chosen_;
 
        /** Temporary store for bitmap data passed to addBitmap()
         *  but before the FL_OBJECT is created in build().