]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetquotes.h
Clean up InsetGraphics::Cache and rename as GraphicsInset.
[lyx.git] / src / insets / insetquotes.h
index 7fe44c073000146344ba0fa3e946847b9b62bbbc..b0cb73ca94dde3616bf6487eb814e96aa7b8d7d6 100644 (file)
@@ -1,20 +1,17 @@
 // -*- C++ -*-
-/* This file is part of*
- * ======================================================
+/**
+ * \file insetquotes.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Jean-Marc Lasgouttes
  *
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2001 The LyX Team
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 #ifndef INSET_QUOTES_H
 #define INSET_QUOTES_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "inset.h"
 
@@ -25,7 +22,6 @@ struct LaTeXFeatures;
 
 
 /** Quotes.
-
   Used for the various quotes. German, English, French, all either
   double or single **/
 class InsetQuotes : public Inset {
@@ -71,15 +67,12 @@ public:
        InsetQuotes(string const & str = "eld");
        /// Create the right quote inset after character c
        InsetQuotes(char c, BufferParams const & params);
-
-       ///
-       int ascent(BufferView *, LyXFont const &) const;
        ///
-       int descent(BufferView *, LyXFont const &) const;
+       Inset * clone() const;
        ///
-       int width(BufferView *, LyXFont const &) const;
+       void metrics(MetricsInfo &, Dimension &) const;
        ///
-       void draw(BufferView *, LyXFont const &, int, float &, bool) const;
+       void draw(PainterInfo & pi, int x, int y) const;
 #if 0
        ///
        LyXFont const convertFont(LyXFont const & font) const;
@@ -90,18 +83,16 @@ public:
        void read(Buffer const *, LyXLex & lex);
        ///
        int latex(Buffer const *, std::ostream &,
-                 bool fragile, bool free_spc) const;
+                 LatexRunParams const &) const;
        ///
        int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
        int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int docbook(Buffer const *, std::ostream &) const;
+       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
        ///
        void validate(LaTeXFeatures &) const;
        ///
-       virtual Inset * clone(Buffer const &, bool same_id = false) const;
-       ///
        Inset::Code lyxCode() const;
        // should this inset be handled like a normal charater
        bool isChar() const { return true; }