X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetlatexaccent.h;h=4d4713b39acbb944d24f1bcb46086dc9316495da;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=edfc2e95bb0edcdd6ff45184978afb61021c791d;hpb=77e706c44175f3cf71473a42d5db890c77b3b7b3;p=lyx.git diff --git a/src/insets/insetlatexaccent.h b/src/insets/insetlatexaccent.h index edfc2e95bb..4d4713b39a 100644 --- a/src/insets/insetlatexaccent.h +++ b/src/insets/insetlatexaccent.h @@ -15,7 +15,7 @@ #pragma interface #endif -#include "lyxinset.h" +#include "inset.h" #include "LString.h" #include "lyxlex.h" @@ -30,44 +30,51 @@ class InsetLatexAccent : public Inset { public: /// - InsetLatexAccent(); + InsetLatexAccent(); /// + explicit InsetLatexAccent(string const & string); /// - int ascent(Painter &, LyXFont const &) const; + int ascent(BufferView *, LyXFont const &) const; /// - int descent(Painter &, LyXFont const &) const; + int descent(BufferView *, LyXFont const &) const; /// - int width(Painter &, LyXFont const &) const; + int width(BufferView *, LyXFont const &) const; /// - void draw(Painter &, LyXFont const &, int baseline, float & x) const; + void draw(BufferView *, LyXFont const &, int, float &, bool) const; /// - int Lbearing(LyXFont const & font) const; + int lbearing(LyXFont const & font) const; /// - int Rbearing(LyXFont const & font) const; + int rbearing(LyXFont const & font) const; /// - bool DisplayISO8859_9(Painter &, LyXFont const & font, + bool displayISO8859_9(BufferView *, LyXFont const & font, int baseline, float & x) const; /// - void Write(std::ostream &) const; + void write(Buffer const *, std::ostream &) const; /// - void Read(LyXLex & lex); + void read(Buffer const *, LyXLex & lex); /// - int Latex(std::ostream &, signed char fragile, bool free_spc) const; + int latex(Buffer const *, std::ostream &, + bool fragile, bool free_spc) const; /// - int Linuxdoc(std::ostream &) const; + int ascii(Buffer const *, std::ostream &, int linelen) const; /// - int DocBook(std::ostream &) const; + int linuxdoc(Buffer const *, std::ostream &) const; /// - bool Deletable() const; + int docbook(Buffer const *, std::ostream &) const; /// - bool DirectWrite() const; + bool deletable() const; /// - Inset * Clone() const; + bool directWrite() const; /// - Inset::Code LyxCode()const; + virtual Inset * clone(Buffer const &, bool same_id = false) const; /// - inline bool CanDisplay(); + Inset::Code lyxCode()const; + /// + inline bool canDisplay(); + // should this inset be handled like a normal charater + bool isChar() const { return true; } + /// all the accent types enum ACCENT_TYPES{ /// @@ -134,7 +141,8 @@ private: mutable char ic; }; -bool InsetLatexAccent::CanDisplay() + +bool InsetLatexAccent::canDisplay() { return candisp; }