]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetBibtex.h
Pure HTML output for math macros.
[lyx.git] / src / insets / InsetBibtex.h
index e8bd176b7072971cefa9ea8f2b57f68e4c57eedd..7c85af1d8741c5a6dba2c3cfe5f4276145abfa87 100644 (file)
@@ -26,13 +26,15 @@ namespace lyx {
 class InsetBibtex : public InsetCommand {
 public:
        ///
-       InsetBibtex(InsetCommandParams const &);
+       InsetBibtex(Buffer *, InsetCommandParams const &);
+       ///
+       virtual ~InsetBibtex();
        ///
        docstring screenLabel() const;
        ///
        docstring toolTip(BufferView const & bv, int x, int y) const;
        ///
-       EDITABLE editable() const { return IS_EDITABLE; }
+       bool hasSettings() const { return true; }
        ///
        InsetCode lyxCode() const { return BIBTEX_CODE; }
        ///
@@ -50,9 +52,11 @@ public:
        ///
        void validate(LaTeXFeatures &) const;
        ///
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
+       ///
        static ParamInfo const & findInfo(std::string const &);
        ///
-       static std::string defaultCommand() { return "bibtex"; };
+       static std::string defaultCommand() { return "bibtex"; }
        ///
        static bool isCompatibleCommand(std::string const & s) 
                { return s == "bibtex"; }