X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetlatexaccent.h;h=4d4713b39acbb944d24f1bcb46086dc9316495da;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=aee81951dd1309a256da79d76162377f707b1535;hpb=56368d8c03f1e89cf480d248eea65139d5395a15;p=lyx.git diff --git a/src/insets/insetlatexaccent.h b/src/insets/insetlatexaccent.h index aee81951dd..4d4713b39a 100644 --- a/src/insets/insetlatexaccent.h +++ b/src/insets/insetlatexaccent.h @@ -4,7 +4,7 @@ * * LyX, The Document Processor * - * Copyright (C) 1995 Matthias Ettrich + * Copyright 1995 Matthias Ettrich * * ====================================================== */ @@ -15,7 +15,7 @@ #pragma interface #endif -#include "lyxinset.h" +#include "inset.h" #include "LString.h" #include "lyxlex.h" @@ -30,48 +30,51 @@ class InsetLatexAccent : public Inset { public: /// - InsetLatexAccent(); + InsetLatexAccent(); /// + explicit InsetLatexAccent(string const & string); /// - InsetLatexAccent(InsetLatexAccent const &); + int ascent(BufferView *, LyXFont const &) const; /// - int Ascent(LyXFont const & font) const; + int descent(BufferView *, LyXFont const &) const; /// - int Descent(LyXFont const & font) const; + int width(BufferView *, LyXFont const &) const; /// - int Width(LyXFont const & font) 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(LyXFont font, LyXScreen & scr, - int baseline, float & x); + bool displayISO8859_9(BufferView *, LyXFont const & font, + int baseline, float & x) const; /// - void Draw(LyXFont font, LyXScreen & scr, int baseline, float & x); + void write(Buffer const *, std::ostream &) const; /// - void Write(ostream &); + void read(Buffer const *, LyXLex & lex); /// - void Read(LyXLex & lex); + int latex(Buffer const *, std::ostream &, + bool fragile, bool free_spc) const; /// - int Latex(ostream &, signed char fragile); + int ascii(Buffer const *, std::ostream &, int linelen) const; /// - int Latex(string & file, signed char fragile); + int linuxdoc(Buffer const *, std::ostream &) const; /// - int Linuxdoc(string & file); + int docbook(Buffer const *, std::ostream &) const; /// - int DocBook(string & file); + bool deletable() const; /// - bool Deletable() const; + bool directWrite() const; /// - bool DirectWrite() const; + virtual Inset * clone(Buffer const &, bool same_id = false) const; /// - Inset * Clone() 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{ /// @@ -118,7 +121,7 @@ public: LSLASH }; private: - friend ostream & operator<<(ostream &, ACCENT_TYPES); + friend std::ostream & operator<<(std::ostream &, ACCENT_TYPES); /// Check if we know the modifier and can display it ok on screen. void checkContents(); /// @@ -135,10 +138,11 @@ private: /// add something to descent - underlined char bool plusdesc; /// international char - char ic; + mutable char ic; }; -bool InsetLatexAccent::CanDisplay() + +bool InsetLatexAccent::canDisplay() { return candisp; }