]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetquotes.h
fix compilation pb ; update eu.po
[lyx.git] / src / insets / insetquotes.h
index 99dedc71ec709357261b2e07a5bc6620f8072f04..2ed6f4e6627f0c699bbad1955e5b9d61966666e8 100644 (file)
@@ -27,7 +27,7 @@ struct LaTeXFeatures;
 
   Used for the various quotes. German, English, French, all either
   double or single **/ 
-class InsetQuotes: public Inset {
+class InsetQuotes : public Inset {
 public:
        ///
        enum quote_language {
@@ -65,35 +65,39 @@ public:
            \item grd <- german double quote right 
            \item etc.
          \end{itemize}
-         */ 
+         */
+       explicit
        InsetQuotes(string const & str = "eld");
        /// Create the right quote inset after character c
        InsetQuotes(char c, BufferParams const & params);
 
        ///
-       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;
        ///
-       LyXFont ConvertFont(LyXFont font);
+       LyXFont const ConvertFont(LyXFont const & font) const;
        ///
-       void Write(ostream &) const;
+       void Write(Buffer const *, std::ostream &) const;
        ///
-       void Read(LyXLex & lex);
+       void Read(Buffer const *, LyXLex & lex);
        ///
-       int Latex(ostream &, signed char fragile, bool free_spc) const;
+       int Latex(Buffer const *, std::ostream &,
+                 bool fragile, bool free_spc) const;
        ///
-       int Linuxdoc(ostream &) const;
+       int Ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
-       int DocBook(ostream &) const;
+       int Linuxdoc(Buffer const *, std::ostream &) const;
+       ///
+       int DocBook(Buffer const *, std::ostream &) const;
        ///
        void Validate(LaTeXFeatures &) const;
        ///
-       Inset * Clone() const;
+       Inset * Clone(Buffer const &) const;
        ///
        Inset::Code LyxCode() const;
 private:
@@ -111,6 +115,7 @@ private:
        ///
        void ParseString(string const &);
        ///
-       string DispString() const;
+       string const DispString() const;
 };
 #endif
+