]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetHyperlink.h
Pure HTML output for math macros.
[lyx.git] / src / insets / InsetHyperlink.h
index 43eee9065b3b0cc9aa73e908b73c5f75fdbe3c16..23fd4ad1d122950d7bf2f4eec6479d51c59fe199 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author José Matos
+ * \author José Matos
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -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; }
        ///
@@ -31,7 +31,7 @@ public:
        ///
        docstring screenLabel() const;
        ///
-       EDITABLE editable() const { return IS_EDITABLE; }
+       bool hasSettings() const { return true; }
        ///
        DisplayType display() const { return Inline; }
        ///
@@ -40,17 +40,21 @@ public:
        int plaintext(odocstream &, OutputParams const &) const;
        ///
        int docbook(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); }
 };