]> 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 69c277056388cdee1e89116273416fb10ef6cd14..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,23 +46,24 @@ 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
        void read(Buffer const *, LyXLex & lex);
        ///
-       int latex(Buffer const *, std::ostream &, LatexRunParams const &,
-                 bool free_spc) const;
+       int latex(Buffer const *, std::ostream &,
+                 LatexRunParams const &) const;
        ///
        int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
@@ -70,9 +71,9 @@ public:
        ///
        int docbook(Buffer const *, std::ostream &, bool mixcont) const;
        ///
-       virtual Inset * clone(Buffer const &, bool same_id = false) 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; }