X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetlatexaccent.h;h=4d4713b39acbb944d24f1bcb46086dc9316495da;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=acf1b81dd1dfb8fe31d83ce4838cb08e4f219021;hpb=d1182f17daa1a164d9527ccbe6500840d7ac6bc8;p=lyx.git diff --git a/src/insets/insetlatexaccent.h b/src/insets/insetlatexaccent.h index acf1b81dd1..4d4713b39a 100644 --- a/src/insets/insetlatexaccent.h +++ b/src/insets/insetlatexaccent.h @@ -43,35 +43,38 @@ public: /// 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(BufferView *, LyXFont const & font, + bool displayISO8859_9(BufferView *, LyXFont const & font, int baseline, float & x) const; /// - void Write(Buffer const *, std::ostream &) const; + void write(Buffer const *, std::ostream &) const; /// - void Read(Buffer const *, LyXLex & lex); + void read(Buffer const *, LyXLex & lex); /// - int Latex(Buffer const *, std::ostream &, + int latex(Buffer const *, std::ostream &, bool fragile, bool free_spc) const; /// - int Ascii(Buffer const *, std::ostream &, int linelen) const; + int ascii(Buffer const *, std::ostream &, int linelen) const; /// - int Linuxdoc(Buffer const *, std::ostream &) const; + int linuxdoc(Buffer const *, std::ostream &) const; /// - int DocBook(Buffer const *, std::ostream &) const; + int docbook(Buffer const *, std::ostream &) const; /// - bool Deletable() const; + bool deletable() const; /// - bool DirectWrite() const; + bool directWrite() const; /// - Inset * Clone(Buffer const &) const; + virtual Inset * clone(Buffer const &, bool same_id = false) const; /// - Inset::Code LyxCode()const; + Inset::Code lyxCode()const; /// - inline bool CanDisplay(); + inline bool canDisplay(); + // should this inset be handled like a normal charater + bool isChar() const { return true; } + /// all the accent types enum ACCENT_TYPES{ /// @@ -139,7 +142,7 @@ private: }; -bool InsetLatexAccent::CanDisplay() +bool InsetLatexAccent::canDisplay() { return candisp; }