]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetSpecialChar.h
Fix InsetBox::contentAlignment()
[lyx.git] / src / insets / InsetSpecialChar.h
index 70e2bf3f823239615b7ca272e1120c97ebe90829..982b1d51a385ffa97f504e470779fe4da50fbc06 100644 (file)
@@ -30,6 +30,8 @@ public:
        enum Kind {
                /// Optional hyphenation point (\-)
                HYPHENATION,
+               /// Optional line wrap point without hyphen (ZWSP)
+               ALLOWBREAK,
                /// Ligature break point (\textcompwordmark)
                LIGATURE_BREAK,
                /// ... (\ldots)
@@ -59,6 +61,8 @@ public:
        ///
        Kind kind() const;
        ///
+       docstring toolTip(BufferView const & bv, int x, int y) const;
+       ///
        void metrics(MetricsInfo &, Dimension &) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
@@ -78,7 +82,9 @@ public:
        ///
        void toString(odocstream &) const;
        ///
-       void forOutliner(docstring &, size_t) const;
+       bool isInToc() const { return true; }
+       ///
+       void forOutliner(docstring &, size_t const, bool const) const;
        ///
        InsetCode lyxCode() const { return SPECIALCHAR_CODE; }
        /// We don't need \begin_inset and \end_inset
@@ -87,11 +93,13 @@ public:
        void validate(LaTeXFeatures &) const;
 
        /// should this inset be handled like a normal character?
-       bool isChar() const { return true; }
+       bool isChar() const;
        /// is this equivalent to a letter?
        bool isLetter() const;
        /// should we break lines after this inset?
        bool isLineSeparator() const;
+       /// Is the content of this inset part of the immediate (visible) text sequence?
+       bool isPartOfTextSequence() const { return isChar(); }
 private:
        Inset * clone() const { return new InsetSpecialChar(*this); }