]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetindex.h
remove remaining needFullRow()
[lyx.git] / src / insets / insetindex.h
index 5ead498423faf49c68350ffe3021acc097b93a39..cb90a519cae83241b5465b00d7facbad1cba4bfe 100644 (file)
@@ -6,7 +6,7 @@
  *
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef INSET_INDEX_H
@@ -26,8 +26,8 @@ public:
        ///
        ~InsetIndex();
        ///
-       virtual InsetBase * clone() const {
-               return new InsetIndex(params());
+       virtual std::auto_ptr<InsetBase> clone() const {
+               return std::auto_ptr<InsetBase>(new InsetIndex(params()));
        }
        ///
        dispatch_result localDispatch(FuncRequest const & cmd);
@@ -36,7 +36,7 @@ public:
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       Inset::Code lyxCode() const;
+       InsetOld::Code lyxCode() const;
        ///
        int docbook(Buffer const *, std::ostream &, bool mixcont) const;
 };
@@ -49,8 +49,8 @@ public:
        ///
        ~InsetPrintIndex();
        ///
-       InsetBase * clone() const {
-               return new InsetPrintIndex(params());
+       virtual std::auto_ptr<InsetBase> clone() const {
+               return std::auto_ptr<InsetBase>(new InsetPrintIndex(params()));
        }
        ///
        //dispatch_result localDispatch(FuncRequest const & cmd);
@@ -59,13 +59,16 @@ public:
        ///
        EDITABLE editable() const { return NOT_EDITABLE; }
        ///
-       bool display() const { return true; }
-       ///
-       Inset::Code lyxCode() const;
+       InsetOld::Code lyxCode() const;
        ///
        string const getScreenLabel(Buffer const *) const;
        ///
-       virtual bool needFullRow() const { return true; }
+       void metrics(MetricsInfo &, Dimension &) const; 
+       ///
+       void draw(PainterInfo & pi, int x, int y) const;
+private:
+       ///
+       mutable unsigned int center_indent_;
 };
 
 #endif