X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetlatexaccent.h;h=33446bd11a227e1b1b330ac48ceeb5a3e46ecf1e;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=0155f487f0bf32a75db4219c751199a0bf1d31a4;hpb=4588bb075a5319d35c7514e6c537fc5183c4c2e2;p=lyx.git diff --git a/src/insets/insetlatexaccent.h b/src/insets/insetlatexaccent.h index 0155f487f0..33446bd11a 100644 --- a/src/insets/insetlatexaccent.h +++ b/src/insets/insetlatexaccent.h @@ -13,6 +13,10 @@ #define INSET_LATEX_ACCENT_H #include "inset.h" +#include "support/types.h" + + +namespace lyx { class Dimension; @@ -30,42 +34,41 @@ public: /// InsetLatexAccent(); /// - explicit - InsetLatexAccent(std::string const & str); + explicit InsetLatexAccent(std::string const & str); /// - void metrics(MetricsInfo &, Dimension &) const; + bool metrics(MetricsInfo &, Dimension &) const; /// void draw(PainterInfo & pi, int x, int y) const; /// - int lbearing(LyXFont const & font) const; - /// - int rbearing(LyXFont const & font) const; - /// bool displayISO8859_9(PainterInfo & pi, int x, int y) const; /// void write(Buffer const &, std::ostream &) const; /// void read(Buffer const &, LyXLex & lex); /// - int latex(Buffer const &, std::ostream &, - LatexRunParams const &) const; - /// - int ascii(Buffer const &, std::ostream &, int linelen) const; + int latex(Buffer const &, odocstream &, + OutputParams const &) const; /// - int linuxdoc(Buffer const &, std::ostream &) const; + int plaintext(Buffer const &, odocstream &, + OutputParams const &) const; /// - int docbook(Buffer const &, std::ostream &, bool mixcont) const; + int docbook(Buffer const &, odocstream &, + OutputParams const &) const; + /// the string that is passed to the TOC + virtual int textString(Buffer const &, odocstream &, + OutputParams const &) const; /// bool directWrite() const; /// - virtual std::auto_ptr clone() const; - /// - InsetOld::Code lyxCode()const; + InsetBase::Code lyxCode()const; /// inline bool canDisplay(); // should this inset be handled like a normal charater bool isChar() const { return true; } + /// is this equivalent to a letter? + virtual bool isLetter() const { return candisp; } + /// all the accent types enum ACCENT_TYPES{ /// @@ -113,10 +116,13 @@ public: }; private: friend std::ostream & operator<<(std::ostream &, ACCENT_TYPES); + + virtual std::auto_ptr doClone() const; + /// Check if we know the modifier and can display it ok on screen. void checkContents(); /// - void drawAccent(PainterInfo const & pi, int x, int y, char accent) const; + void drawAccent(PainterInfo const & pi, int x, int y, char_type accent) const; /// std::string contents; /// can display as proper char @@ -140,4 +146,7 @@ bool InsetLatexAccent::canDisplay() return candisp; } + +} // namespace lyx + #endif