]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetHyperlink.h
Pure HTML output for math macros.
[lyx.git] / src / insets / InsetHyperlink.h
index 8ae3ae717d9707023ac76f10083966f04d8d5411..23fd4ad1d122950d7bf2f4eec6479d51c59fe199 100644 (file)
@@ -23,7 +23,7 @@ class InsetHyperlink : public InsetCommand
 {
 public:
        ///
-       explicit InsetHyperlink(InsetCommandParams const &);
+       explicit InsetHyperlink(Buffer * buf, InsetCommandParams const &);
        ///
        InsetCode lyxCode() const { return HYPERLINK_CODE; }
        ///
@@ -41,18 +41,20 @@ public:
        ///
        int docbook(odocstream &, OutputParams const &) const;
        ///
-       int xhtml(odocstream &, OutputParams const &) const;
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
        /// the string that is passed to the TOC
        void tocString(odocstream &) const;
        ///
        static ParamInfo const & findInfo(std::string const &);
        ///
-       static std::string defaultCommand() { return "href"; };
+       static std::string defaultCommand() { return "href"; }
        ///
        static bool isCompatibleCommand(std::string const & s) 
                { return s == "href"; }
        /// Force inset into LTR environment if surroundings are RTL?
        bool forceLTR() const { return true; }
+       ///
+       virtual bool isInToc() const { return true; }
 private:
        Inset * clone() const { return new InsetHyperlink(*this); }
 };