]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetspace.h
prevent crash when inserting minipage in table cell,
[lyx.git] / src / insets / insetspace.h
index 1081797ed8b582abd2d344ee0e6df89be75726b0..10432656772cae518c2d89c3c60bac44968ceafa 100644 (file)
@@ -1,6 +1,6 @@
 // -*- C++ -*-
 /**
- * \file InsetSpace.h
+ * \file insetspace.h
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
@@ -22,7 +22,7 @@
 struct LaTeXFeatures;
 
 ///  Used to insert different kinds of spaces
-class InsetSpace : public Inset {
+class InsetSpace : public InsetOld {
 public:
 
        /// The different kinds of spaces we support
@@ -46,16 +46,17 @@ public:
        };
 
        ///
-       InsetSpace() {}
+       InsetSpace();
+
        ///
        explicit
        InsetSpace(Kind k);
        ///
        Kind kind() const;
        ///
-       void dimension(BufferView *, LyXFont const &, Dimension &) const;
+       void metrics(MetricsInfo &, Dimension &) const;
        ///
-       void draw(BufferView *, LyXFont const &, int, float &) const;
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
        void write(Buffer const *, std::ostream &) const;
        /// Will not be used when lyxf3
@@ -70,11 +71,9 @@ public:
        ///
        int docbook(Buffer const *, std::ostream &, bool mixcont) const;
        ///
-       virtual Inset * clone(Buffer const &) const;
-       ///
-       //virtual Inset * clone(Buffer const &, bool same_id) const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       Inset::Code lyxCode() const { return Inset::SPACE_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::SPACE_CODE; }
        /// We don't need \begin_inset and \end_inset
        bool directWrite() const { return true; }