X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetSpecialChar.h;h=982b1d51a385ffa97f504e470779fe4da50fbc06;hb=b73879691f816b0874d9dec0c09e2db7889c4e8e;hp=c37e49880b9ab7eae4f2e69779d5de771cc6c5fa;hpb=f15c4159aa9fa1c78b7b642e58edbff333292d5a;p=lyx.git diff --git a/src/insets/InsetSpecialChar.h b/src/insets/InsetSpecialChar.h index c37e49880b..982b1d51a3 100644 --- a/src/insets/InsetSpecialChar.h +++ b/src/insets/InsetSpecialChar.h @@ -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,9 +61,9 @@ public: /// Kind kind() const; /// - void metrics(MetricsInfo &, Dimension &) const; + docstring toolTip(BufferView const & bv, int x, int y) const; /// - void drawBackground(PainterInfo & pi, int x, int y) const; + void metrics(MetricsInfo &, Dimension &) const; /// void draw(PainterInfo & pi, int x, int y) const; /// @@ -80,7 +82,7 @@ public: /// void toString(odocstream &) const; /// - bool isInToc() const { return true; } + bool isInToc() const { return true; } /// void forOutliner(docstring &, size_t const, bool const) const; /// @@ -91,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); }