]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetSpace.h
tex2lyx/text.cpp: fix typos
[lyx.git] / src / insets / InsetSpace.h
index d2d5d421df574c48ac9311a60f4fcd3b2240a68a..718a97ba1749fe6326473561a870bfbde8d819cb 100644 (file)
@@ -30,6 +30,8 @@ struct InsetSpaceParams {
                NORMAL,
                /// Protected (no break) space ('~')
                PROTECTED,
+               /// Visible ("open box") space ('\textvisiblespace')
+               VISIBLE,
                /// Thin space ('\,')
                THIN,
                /// Medium space ('\:')
@@ -120,7 +122,7 @@ public:
        /// Will not be used when lyxf3
        void read(Lexer & lex);
        ///
-       int latex(odocstream &, OutputParams const &) const;
+       void latex(otexstream &, OutputParams const &) const;
        ///
        int plaintext(odocstream &, OutputParams const &) const;
        ///
@@ -129,8 +131,10 @@ public:
        docstring xhtml(XHTMLStream &, OutputParams const &) const;
        ///
        void validate(LaTeXFeatures & features) const;
-       /// the string that is passed to the TOC
-       void tocString(odocstream &) const;
+       ///
+       void toString(odocstream &) const;
+       ///
+       void forToc(docstring &, size_t) const;
        ///
        bool hasSettings() const { return true; }
        ///
@@ -138,7 +142,7 @@ public:
        /// is this an expandible space (rubber length)?
        bool isStretchableSpace() const;
 
-       // should this inset be handled like a normal charater
+       /// should this inset be handled like a normal character?
        bool isChar() const { return true; }
        /// is this equivalent to a letter?
        bool isLetter() const { return false; }
@@ -146,7 +150,7 @@ public:
        // a line separator)?
        bool isSpace() const { return true; }
        ///
-       docstring contextMenu(BufferView const & bv, int x, int y) const;
+       std::string contextMenuName() const;
 protected:
        ///
        Inset * clone() const { return new InsetSpace(*this); }