]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetindex.h
prevent crash when inserting minipage in table cell,
[lyx.git] / src / insets / insetindex.h
index db4a138713603f1ffacec7523ab60e371e2f3e11..8c695731feb120a689cb5e879d90591be923daa3 100644 (file)
@@ -22,21 +22,21 @@ struct LaTeXFeatures;
 class InsetIndex : public InsetCommand {
 public:
        ///
-       InsetIndex(InsetCommandParams const &, bool same_id = false);
+       InsetIndex(InsetCommandParams const &);
        ///
-       virtual Inset * clone(Buffer const &, bool same_id = false) const {
-               return new InsetIndex(params(), same_id);
+       ~InsetIndex();
+       ///
+       virtual std::auto_ptr<InsetBase> clone() const {
+               return std::auto_ptr<InsetBase>(new InsetIndex(params()));
        }
        ///
+       dispatch_result localDispatch(FuncRequest const & cmd);
+       ///
        string const getScreenLabel(Buffer const *) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       void edit(BufferView *, int, int, mouse_button::state);
-       ///
-       void edit(BufferView * bv, bool front = true);
-       ///
-       Inset::Code lyxCode() const;
+       InsetOld::Code lyxCode() const;
        ///
        int docbook(Buffer const *, std::ostream &, bool mixcont) const;
 };
@@ -45,23 +45,23 @@ public:
 class InsetPrintIndex : public InsetCommand {
 public:
        ///
-       InsetPrintIndex(InsetCommandParams const &, bool same_id = false);
+       InsetPrintIndex(InsetCommandParams const &);
        ///
-       virtual Inset * clone(Buffer const &, bool same_id = false) const {
-               return new InsetPrintIndex(params(), same_id);
+       ~InsetPrintIndex();
+       ///
+       virtual std::auto_ptr<InsetBase> clone() const {
+               return std::auto_ptr<InsetBase>(new InsetPrintIndex(params()));
        }
+       ///
+       //dispatch_result localDispatch(FuncRequest const & cmd);
        /// Updates needed features for this inset.
        void validate(LaTeXFeatures & features) const;
        ///
-       void edit(BufferView *, int, int, mouse_button::state) {}
-       ///
-       void edit(BufferView *, bool = true) {}
-       ///
        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;
        ///