]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetSpace.h
Minor string fixes
[lyx.git] / src / insets / InsetSpace.h
index dc74faadcac26832922415216631d38e988e4dba..a4fd6151f90a458c9a8429573e6d0cdc735f03a1 100644 (file)
@@ -124,7 +124,8 @@ public:
        ///
        void latex(otexstream &, OutputParams const &) const;
        ///
-       int plaintext(odocstream &, OutputParams const &) const;
+       int plaintext(odocstringstream & ods, OutputParams const & op,
+                     size_t max_length = INT_MAX) const;
        ///
        int docbook(odocstream &, OutputParams const &) const;
        ///
@@ -134,14 +135,15 @@ public:
        ///
        void toString(odocstream &) const;
        ///
-       void forToc(docstring &, size_t) const;
+       void forOutliner(docstring &, size_t const, bool const) const;
        ///
        bool hasSettings() const { return true; }
        ///
+       bool clickable(BufferView const &, int, int) const { return true; }
+       ///
        InsetCode lyxCode() const { return SPACE_CODE; }
-       /// is this an expandible space (rubber length)?
-       bool isStretchableSpace() const;
-
+       /// does this inset try to use all available space (like \\hfill does)?
+       bool isHfill() const;
        /// should this inset be handled like a normal character?
        bool isChar() const { return true; }
        /// is this equivalent to a letter?
@@ -151,8 +153,6 @@ public:
        bool isSpace() const { return true; }
        ///
        std::string contextMenuName() const;
-       ///
-       bool clickable(int /* x */, int /* y */) const { return true; }
 protected:
        ///
        Inset * clone() const { return new InsetSpace(*this); }