]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbibtex.h
Final touch 'inset display()'; fix 'is a bit silly' bug
[lyx.git] / src / insets / insetbibtex.h
index 8d99ec8c710c0f65fac5ac843a9ffcd771430de9..a7fddf505d24c377d2333113faeaf960cfdc3813 100644 (file)
@@ -26,28 +26,33 @@ public:
        ~InsetBibtex();
        ///
        std::auto_ptr<InsetBase> clone() const;
-       /// small wrapper for the time being
-       virtual dispatch_result localDispatch(FuncRequest const & cmd);
        ///
-       string const getScreenLabel(Buffer const *) const;
+       void metrics(MetricsInfo &, Dimension &) const;
+       ///
+       void draw(PainterInfo & pi, int x, int y) const;
+       ///
+       std::string const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
        InsetOld::Code lyxCode() const { return InsetOld::BIBTEX_CODE; }
        ///
-       int latex(Buffer const *, std::ostream &,
+       int latex(Buffer const &, std::ostream &,
                  LatexRunParams const &) const;
        ///
-       void fillWithBibKeys(Buffer const * buffer,
-               std::vector<std::pair<string,string> > & keys) const;
+       void fillWithBibKeys(Buffer const & buffer,
+               std::vector<std::pair<std::string,std::string> > & keys) const;
        ///
-       std::vector<string> const getFiles(Buffer const &) const;
+       std::vector<std::string> const getFiles(Buffer const &) const;
        ///
-       bool addDatabase(string const &);
+       bool addDatabase(std::string const &);
        ///
-       bool delDatabase(string const &);
+       bool delDatabase(std::string const &);
+protected:
        ///
-       bool display() const { return true; }
+       virtual
+       dispatch_result
+       priv_dispatch(FuncRequest const & cmd, idx_type &, pos_type &);
 };
 
 #endif // INSET_BIBTEX_H