]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbibtex.h
prevent crash when inserting minipage in table cell,
[lyx.git] / src / insets / insetbibtex.h
index f14428fc2dababced0cf864db711829a4b4f0f2e..8dfd9fbe9b341e16054cfd2aea3bb4466e47913e 100644 (file)
@@ -16,8 +16,6 @@
 #include <vector>
 #include "insetcommand.h"
 
-class Buffer;
-
 /** Used to insert BibTeX's information
   */
 class InsetBibtex : public InsetCommand {
@@ -25,17 +23,9 @@ public:
        ///
        InsetBibtex(InsetCommandParams const &);
        ///
-       //InsetBibtex(InsetCommandParams const &, bool same_id);
-       ///
        ~InsetBibtex();
        ///
-       Inset * clone(Buffer const &) const {
-               return new InsetBibtex(params());
-       }
-       ///
-       //Inset * clone(Buffer const &, bool same_id) const {
-       //      return new InsetBibtex(params(), same_id);
-       //}
+       std::auto_ptr<InsetBase> clone() const;
        /// small wrapper for the time being
        virtual dispatch_result localDispatch(FuncRequest const & cmd);
        ///
@@ -43,13 +33,13 @@ public:
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       Inset::Code lyxCode() const { return Inset::BIBTEX_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::BIBTEX_CODE; }
        ///
        int latex(Buffer const *, std::ostream &,
                  LatexRunParams const &) const;
        ///
-       void fillWithBibKeys(Buffer const *,
-               std::vector<std::pair<string,string> > &) const;
+       void fillWithBibKeys(Buffer const * buffer,
+               std::vector<std::pair<string,string> > & keys) const;
        ///
        std::vector<string> const getFiles(Buffer const &) const;
        ///
@@ -58,15 +48,6 @@ public:
        bool delDatabase(string const &);
        ///
        bool display() const { return true; }
-       ///
-       struct Holder {
-               InsetBibtex * inset;
-               BufferView * view;
-       };
-
-private:
-       ///
-       Holder holder;
 };
 
 #endif // INSET_BIBTEX_H