]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/formula.h
small cleanup, doxygen, formatting changes
[lyx.git] / src / mathed / formula.h
index d8ac350492873304162efe21df0d166382f82d59..aa350a3f853eb7336f4473ddeb657b33f3a2f000 100644 (file)
@@ -56,7 +56,7 @@ public:
        int Latex(Buffer const *, std::ostream &,
                  bool fragile, bool free_spc) const;
        ///
-       int Ascii(Buffer const *, std::ostream &) const;
+       int Ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
        int Linuxdoc(Buffer const *, std::ostream &) const;
        ///
@@ -64,11 +64,11 @@ public:
        ///
        void Validate(LaTeXFeatures &) const;
        ///
-       Inset * Clone() const;
+       Inset * Clone(Buffer const &) const;
        ///
        Inset::Code LyxCode() const { return Inset::MATH_CODE; }
        ///
-       LyXFont ConvertFont(LyXFont const & f) const {
+       LyXFont const ConvertFont(LyXFont const & f) const {
                // We have already discussed what was here
                LyXFont font(f);
                font.setLatex(LyXFont::OFF);
@@ -76,7 +76,7 @@ public:
        }
 
        /// what appears in the minibuffer when opening
-       char const * EditMessage() const;
+       string const EditMessage() const;
        ///
        void Edit(BufferView *, int x, int y, unsigned int button);
        ///
@@ -86,7 +86,7 @@ public:
        ///
        void ToggleInsetCursor(BufferView *);
        ///
-       void ShowInsetCursor(BufferView *);
+       void ShowInsetCursor(BufferView *, bool show=true);
        ///
        void HideInsetCursor(BufferView *);
        ///
@@ -108,11 +108,11 @@ public:
        virtual RESULT LocalDispatch(BufferView *, int, string const &);
     
        ///
-       void InsertSymbol(BufferView *, char const *);
+       void InsertSymbol(BufferView *, string const &);
        ///
        bool SetNumber(bool);
        ///
-       std::vector<string> getLabelList() const;
+       std::vector<string> const getLabelList() const;
    
 protected:
        ///
@@ -128,10 +128,4 @@ private:
        ///
        string label;
 };
-
-
-// If a mathinset exist at cursor pos, just lock it.
-// Otherwise create a new one, and lock it.
-bool OpenMathInset(Buffer *);
-
 #endif