]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathHull.h
cursor is no more damaging the background. L-shaped cursor is broken right now....
[lyx.git] / src / mathed / InsetMathHull.h
index 44d9cd502e2afb00d00675423ef890d9f99ce40a..41123a4cc82309fbe6062e3fc121ebaadc3d3f48 100644 (file)
@@ -15,6 +15,9 @@
 #include "InsetMathGrid.h"
 #include <boost/scoped_ptr.hpp>
 
+
+namespace lyx {
+
 class RenderPreview;
 
 
@@ -40,9 +43,9 @@ public:
        ///
        void drawT(TextPainter &, int x, int y) const;
        ///
-       std::string label(row_type row) const;
+       docstring label(row_type row) const;
        ///
-       void label(row_type row, std::string const & label);
+       void label(row_type row, docstring const & label);
        ///
        void numbered(row_type row, bool num);
        ///
@@ -53,7 +56,7 @@ public:
        bool ams() const;
        /// Appends \c list with all labels found within this inset.
        void getLabelList(Buffer const &,
-                         std::vector<lyx::docstring> & list) const;
+                         std::vector<docstring> & list) const;
        ///
        void validate(LaTeXFeatures & features) const;
        /// identifies HullInset
@@ -89,24 +92,24 @@ public:
        ///
        void write(WriteStream & os) const;
        ///
-       void mathmlize(MathMLStream &) const;
+       void mathmlize(MathStream &) const;
        ///
        void normalize(NormalStream &) const;
        ///
-       void infoize(std::ostream & os) const;
+       void infoize(odocstream & os) const;
 
        ///
        void write(Buffer const &, std::ostream & os) const;
        ///
        void read(Buffer const &, LyXLex & lex);
        ///
-       int plaintext(Buffer const &, lyx::odocstream &,
+       int plaintext(Buffer const &, odocstream &,
                  OutputParams const &) const;
        ///
-       int docbook(Buffer const &, lyx::odocstream &,
+       int docbook(Buffer const &, odocstream &,
                    OutputParams const &) const;
        /// the string that is passed to the TOC
-       virtual int textString(Buffer const &, lyx::odocstream &,
+       virtual int textString(Buffer const &, odocstream &,
                OutputParams const &) const;
 
        /// get notification when the cursor leaves this inset
@@ -114,7 +117,7 @@ public:
        ///
        //bool insetAllowed(Code code) const;
        ///
-       void addPreview(lyx::graphics::PreviewLoader &) const;
+       void addPreview(graphics::PreviewLoader &) const;
 
        ///
        static int displayMargin() { return 12; }
@@ -128,7 +131,7 @@ protected:
        bool getStatus(LCursor & cur, FuncRequest const & cmd,
                FuncStatus & status) const;
        ///
-       std::string eolString(row_type row, bool emptyline, bool fragile) const;
+       docstring eolString(row_type row, bool emptyline, bool fragile) const;
 
 private:
        virtual std::auto_ptr<InsetBase> doClone() const;
@@ -141,7 +144,7 @@ private:
        ///
        void footer_write(WriteStream &) const;
        ///
-       lyx::docstring nicelabel(row_type row) const;
+       docstring nicelabel(row_type row) const;
        ///
        void doExtern(LCursor & cur, FuncRequest & func);
        ///
@@ -163,7 +166,7 @@ private:
        /// change number of columns, split or combine columns if necessary.
        void changeCols(col_type);
        ///
-       char const * standardFont() const;
+       docstring standardFont() const;
        /// consistency check
        void check() const;
        /// can this change its number of rows?
@@ -176,7 +179,7 @@ private:
        ///
        std::vector<int> nonum_;
        ///
-       std::vector<std::string> label_;
+       std::vector<docstring> label_;
        ///
        boost::scoped_ptr<RenderPreview> preview_;
        ///
@@ -186,7 +189,7 @@ private:
 //
 public:
        /// what appears in the minibuffer when opening
-       virtual lyx::docstring const editMessage() const;
+       virtual docstring const editMessage() const;
        ///
        virtual void mutateToText();
        ///
@@ -204,12 +207,15 @@ public:
 
 protected:
        ///
-       void handleFont(LCursor & cur, std::string const & arg,
-               std::string const & font);
+       void handleFont(LCursor & cur, docstring const & arg,
+               docstring const & font);
        ///
-       void handleFont2(LCursor & cur, std::string const & arg);
+       void handleFont2(LCursor & cur, docstring const & arg);
        ///
        bool previewState(BufferView * bv) const;
 };
 
+
+
+} // namespace lyx
 #endif