X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetspecialchar.h;h=f8d5a20152e21b81e5020f8ea3e49be500417752;hb=3c8aba3b556871fb1100a2f98cd93d5d4e3f70c9;hp=e01b32e6d44cd06fa7243f94f0cd64fa6a8b24f8;hpb=dfe1bc44b44903faf77ef454c98c4c3e56c1d5e3;p=lyx.git diff --git a/src/insets/insetspecialchar.h b/src/insets/insetspecialchar.h index e01b32e6d4..f8d5a20152 100644 --- a/src/insets/insetspecialchar.h +++ b/src/insets/insetspecialchar.h @@ -1,12 +1,12 @@ // -*- C++ -*- /* This file is part of* - * ====================================================== + * ====================================================== * * LyX, The Document Processor * - * Copyright (C) 1997 Asger Alstrup + * Copyright 1997 Asger Alstrup * - * ======================================================*/ + * ====================================================== */ #ifndef INSET_SPECIALCHAR_H #define INSET_SPECIALCHAR_H @@ -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