]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetBibtex.h
Change inset label from ": filename" to "Program Listing: filename" for listings...
[lyx.git] / src / insets / InsetBibtex.h
index 64cab78beac8b478bc4aec91cf3dc6e0a9edf4e6..e8bd176b7072971cefa9ea8f2b57f68e4c57eedd 100644 (file)
@@ -30,6 +30,8 @@ public:
        ///
        docstring screenLabel() const;
        ///
+       docstring toolTip(BufferView const & bv, int x, int y) const;
+       ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
        InsetCode lyxCode() const { return BIBTEX_CODE; }
@@ -57,10 +59,17 @@ public:
        /// look up the path to the file using TeX
        static support::FileName 
                getBibTeXPath(docstring const & filename, Buffer const & buf);
+       ///
+       docstring contextMenu(BufferView const &, int, int) const;
 private:
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
+       bool getStatus(Cursor & cur, FuncRequest const & cmd,
+               FuncStatus & flag) const;
+       ///
+       void editDatabases() const;
+       ///
        Inset * clone() const { return new InsetBibtex(*this); }
 };