]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetSpecialChar.h
Check path of Qt tools if qtchooser is detected
[lyx.git] / src / insets / InsetSpecialChar.h
index 7172cf5424483b3ce7e80567dd8c37719d07f6cb..a5761864d8ca1cce7d6461067312b98d7eb09574 100644 (file)
@@ -6,7 +6,7 @@
  *
  * \author Asger Alstrup Nielsen
  * \author Jean-Marc Lasgouttes
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -42,10 +42,18 @@ public:
                SLASH,
                /// protected dash
                NOBREAKDASH,
+               /// LyX logo
+               PHRASE_LYX,
+               /// TeX logo
+               PHRASE_TEX,
+               /// LaTeX2e logo
+               PHRASE_LATEX2E,
+               /// LaTeX logo
+               PHRASE_LATEX
        };
 
        ///
-       InsetSpecialChar() {}
+       InsetSpecialChar() : Inset(0), kind_(HYPHENATION) {}
        ///
        explicit InsetSpecialChar(Kind k);
        ///
@@ -59,13 +67,18 @@ public:
        /// Will not be used when lyxf3
        void read(Lexer & lex);
        ///
-       int latex(odocstream &, 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;
-       /// the string that is passed to the TOC
-       void textString(odocstream &) const;
+       ///
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
+       ///
+       void toString(odocstream &) const;
+       ///
+       void forOutliner(docstring &, size_t const, bool const) const;
        ///
        InsetCode lyxCode() const { return SPECIALCHAR_CODE; }
        /// We don't need \begin_inset and \end_inset
@@ -73,14 +86,14 @@ public:
        ///
        void validate(LaTeXFeatures &) const;
 
-       // should this inset be handled like a normal charater
-       bool isChar() const;
+       /// should this inset be handled like a normal character?
+       bool isChar() const { return true; }
        /// 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;
 private:
-       Inset * clone() const;
+       Inset * clone() const { return new InsetSpecialChar(*this); }
 
        /// And which kind is this?
        Kind kind_;