X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetspecialchar.h;h=f8d5a20152e21b81e5020f8ea3e49be500417752;hb=3c8aba3b556871fb1100a2f98cd93d5d4e3f70c9;hp=354b5a24418bdb974a25244393d69a74b7ecc913;hpb=188833d864794c9c1ec42a8361b93aaa718874ea;p=lyx.git diff --git a/src/insets/insetspecialchar.h b/src/insets/insetspecialchar.h index 354b5a2441..f8d5a20152 100644 --- a/src/insets/insetspecialchar.h +++ b/src/insets/insetspecialchar.h @@ -4,7 +4,7 @@ * * LyX, The Document Processor * - * Copyright (C) 1997 Asger Alstrup + * Copyright 1997 Asger Alstrup * * ====================================================== */ @@ -21,7 +21,7 @@ struct LaTeXFeatures; /// Used to insert special chars -class InsetSpecialChar: public Inset { +class InsetSpecialChar : public Inset { public: /// The different kinds of special chars we support @@ -33,41 +33,42 @@ public: /// End of sentence punctuation (\@) END_OF_SENTENCE, /// Menu separator - MENU_SEPARATOR + MENU_SEPARATOR, + /// Protected Separator + PROTECTED_SEPARATOR }; /// - InsetSpecialChar(); + InsetSpecialChar() {} /// + explicit InsetSpecialChar(Kind k); /// - ~InsetSpecialChar(); + int ascent(Painter &, LyXFont const &) const; /// - int Ascent(LyXFont const & font) const; + int descent(Painter &, LyXFont const &) const; /// - int Descent(LyXFont const & font) const; + int width(Painter &, LyXFont const &) const; /// - int Width(LyXFont const & font) const; + void draw(Painter &, LyXFont const &, int baseline, float & x) const; /// - void Draw(LyXFont, LyXScreen & scr, int baseline, float & x); - /// - void Write(FILE * file); + void Write(std::ostream &) const; /// Will not be used when lyxf3 void Read(LyXLex & lex); /// - int Latex(FILE * file, signed char fragile); + int Latex(std::ostream &, bool fragile, bool free_spc) const; /// - int Latex(string & file, signed char fragile); + int Ascii(std::ostream &) const; /// - int Linuxdoc(string & file); + int Linuxdoc(std::ostream &) const; /// - int DocBook(string & file); + int DocBook(std::ostream &) const; /// - Inset * Clone(); + Inset * Clone() const; /// Inset::Code LyxCode() const { - return Inset::NO_CODE; + return Inset::SPECIALCHAR_CODE; } /// We don't need \begin_inset and \end_inset bool DirectWrite() const