]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetSpecialChar.h
Do not repeatedly call main_font_encoding()
[lyx.git] / src / insets / InsetSpecialChar.h
index fe24dc8553197789df74c6c292f61775d80f1f5f..0c8cc3630447081134991337fd590eb179d153a0 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)
@@ -42,47 +44,66 @@ public:
                SLASH,
                /// protected dash
                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;
        ///
-       void metrics(MetricsInfo &, Dimension &) const;
+       docstring toolTip(BufferView const & bv, int x, int y) const override;
+       /// some special chars allow line breaking after them
+       int rowFlags() const override;
        ///
-       void draw(PainterInfo & pi, int x, int y) const;
+       void metrics(MetricsInfo &, Dimension &) const override;
        ///
-       void write(std::ostream &) const;
+       void draw(PainterInfo & pi, int x, int y) const override;
+       ///
+       void write(std::ostream &) const override;
        /// Will not be used when lyxf3
-       void read(Lexer & lex);
+       void read(Lexer & lex) override;
+       ///
+       void latex(otexstream &, OutputParams const &) const override;
+       ///
+       int plaintext(odocstringstream & ods, OutputParams const & op,
+                     size_t max_length = INT_MAX) const override;
+       ///
+       void docbook(XMLStream &, OutputParams const &) const override;
        ///
-       int latex(odocstream &, OutputParams const &) const;
+       docstring xhtml(XMLStream &, OutputParams const &) const override;
        ///
-       int plaintext(odocstream &, OutputParams const &) const;
+       void toString(odocstream &) const override;
        ///
-       int docbook(odocstream &, OutputParams const &) const;
+       bool isInToc() const override { return true; }
        ///
-       docstring xhtml(XHTMLStream &, OutputParams const &) const;
-       /// the string that is passed to the TOC
-       void tocString(odocstream &) const;
+       void forOutliner(docstring &, size_t const, bool const) const override;
        ///
-       InsetCode lyxCode() const { return SPECIALCHAR_CODE; }
+       InsetCode lyxCode() const override { return SPECIALCHAR_CODE; }
        /// We don't need \begin_inset and \end_inset
-       bool directWrite() const { return true; }
+       bool directWrite() const override { return true; }
        ///
-       void validate(LaTeXFeatures &) const;
+       void validate(LaTeXFeatures &) const override;
 
-       // should this inset be handled like a normal charater
-       bool isChar() const;
+       /// should this inset be handled like a normal character?
+       bool isChar() const override;
        /// is this equivalent to a letter?
-       bool isLetter() const;
-       // should we break lines after this inset?
-       bool isLineSeparator() const;
+       bool isLetter() const override;
+       /// should we break lines after this inset?
+       bool isLineSeparator() const override;
+       /// Is the content of this inset part of the immediate (visible) text sequence?
+       bool isPartOfTextSequence() const override { return isChar(); }
 private:
-       Inset * clone() const { return new InsetSpecialChar(*this); };
+       Inset * clone() const override { return new InsetSpecialChar(*this); }
 
        /// And which kind is this?
        Kind kind_;