X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetSpecialChar.h;h=982b1d51a385ffa97f504e470779fe4da50fbc06;hb=b73879691f816b0874d9dec0c09e2db7889c4e8e;hp=e402ef7c7cad22f5baa48544ba585e5dbfe0a465;hpb=1ef605f6254ef3f3b8cec5440a2e67e6f23a707b;p=lyx.git diff --git a/src/insets/InsetSpecialChar.h b/src/insets/InsetSpecialChar.h index e402ef7c7c..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) @@ -41,16 +43,26 @@ public: /// breakable slash SLASH, /// protected dash - NOBREAKDASH + NOBREAKDASH, + /// LyX logo + PHRASE_LYX, + /// TeX logo + PHRASE_TEX, + /// LaTeX2e logo + PHRASE_LATEX2E, + /// LaTeX logo + PHRASE_LATEX }; /// - InsetSpecialChar() : Inset(0) {} + InsetSpecialChar() : Inset(0), kind_(HYPHENATION) {} /// explicit InsetSpecialChar(Kind k); /// 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; @@ -59,9 +71,10 @@ public: /// Will not be used when lyxf3 void read(Lexer & lex); /// - int latex(otexstream &, OutputParams const &) const; + 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; /// @@ -69,7 +82,9 @@ public: /// void toString(odocstream &) const; /// - void forToc(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 @@ -77,14 +92,16 @@ public: /// void validate(LaTeXFeatures &) const; - // should this inset be handled like a normal charater - bool isChar() const { return true; } + /// should this inset be handled like a normal character? + bool isChar() const; /// is this equivalent to a letter? bool isLetter() const; - // should we break lines after this inset? + /// 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); }; + Inset * clone() const { return new InsetSpecialChar(*this); } /// And which kind is this? Kind kind_;