]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetSpace.h
Remove dead code + whitespace
[lyx.git] / src / insets / InsetSpace.h
index 5496e3c8489b30a2e269c00ecff84b513a7877fa..c4315a182fc1d8165299336974645f1712b31de0 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 ('\:')
@@ -122,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;
        ///
@@ -136,6 +139,8 @@ public:
        ///
        bool hasSettings() const { return true; }
        ///
+       bool clickable(int, int) const { return true; }
+       ///
        InsetCode lyxCode() const { return SPACE_CODE; }
        /// is this an expandible space (rubber length)?
        bool isStretchableSpace() const;
@@ -148,9 +153,7 @@ public:
        // a line separator)?
        bool isSpace() const { return true; }
        ///
-       docstring contextMenuName() const;
-       ///
-       bool clickable(int /* x */, int /* y */) const { return true; }
+       std::string contextMenuName() const;
 protected:
        ///
        Inset * clone() const { return new InsetSpace(*this); }