]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlatexaccent.h
Enable the external inset to handle unknown templates gracefully.
[lyx.git] / src / insets / insetlatexaccent.h
index b35b2eb9d5457f7030f01e8509e5373f696a78bf..707b0853f5446f9689ede2c3285bf8e0b96ec477 100644 (file)
@@ -1,24 +1,20 @@
 // -*- C++ -*-
-/* This file is part of*
- * ======================================================
+/**
+ * \file insetlatexaccent.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Lars Gullik Bjønnes
  *
- *         Copyright 1995 Matthias Ettrich
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 #ifndef INSET_LATEX_ACCENT_H
 #define INSET_LATEX_ACCENT_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
 #include "inset.h"
 #include "LString.h"
-
-class LyXLex;
+#include "dimension.h"
 
 /** Insertion of accents
 
@@ -36,27 +32,22 @@ public:
        explicit
        InsetLatexAccent(string const & string);
        ///
-       int ascent(BufferView *, LyXFont const &) const;
+       void metrics(MetricsInfo &, Dimension &) const;
        ///
-       int descent(BufferView *, LyXFont const &) const;
-       ///
-       int width(BufferView *, LyXFont const &) const;
-       ///
-       void draw(BufferView *, LyXFont const &, int, float &, bool) 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(BufferView *, LyXFont const & font,
-                             int baseline, float & x) 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 &,
-                 bool fragile, bool free_spc) const;
+                 LatexRunParams const &) const;
        ///
        int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
@@ -64,11 +55,9 @@ public:
        ///
        int docbook(Buffer const *, std::ostream &, bool mixcont) const;
        ///
-       bool deletable() const;
-       ///
        bool directWrite() const;
        ///
-       virtual Inset * clone(Buffer const &, bool same_id = false) const;
+       virtual Inset * clone() const;
        ///
        Inset::Code lyxCode()const;
        ///
@@ -140,6 +129,8 @@ private:
        bool  plusdesc;
        /// international char
        mutable char  ic;
+       ///
+       mutable Dimension dim_;
 };