]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetHyperlink.h
Remove all BufferParam arguments in InsetXXX methods (since insets know about their...
[lyx.git] / src / insets / InsetHyperlink.h
index 11e7ebfda8241219df831fc98991ba551aa1764e..3835c1755d09983d4f233d3ab154107ab72bd730 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.
  */
 #ifndef INSET_HYPERLINK_H
 #define INSET_HYPERLINK_H
 
-
 #include "InsetCommand.h"
 
 
 namespace lyx {
 
-class LaTeXFeatures;
-
 /** The hyperlink inset
  */
-class InsetHyperlink : public InsetCommand {
+class InsetHyperlink : public InsetCommand
+{
 public:
        ///
-       explicit
-       InsetHyperlink(InsetCommandParams const &);
+       explicit InsetHyperlink(InsetCommandParams const &);
        ///
        InsetCode lyxCode() const { return HYPERLINK_CODE; }
        ///
@@ -34,7 +31,7 @@ public:
        ///
        docstring screenLabel() const;
        ///
-       EDITABLE editable() const { return IS_EDITABLE; }
+       bool hasSettings() const { return true; }
        ///
        DisplayType display() const { return Inline; }
        ///
@@ -43,8 +40,10 @@ public:
        int plaintext(odocstream &, OutputParams const &) const;
        ///
        int docbook(odocstream &, OutputParams const &) const;
+       ///
+       docstring xhtml(odocstream &, OutputParams const &) const;
        /// the string that is passed to the TOC
-       void textString(odocstream &) const;
+       void tocString(odocstream &) const;
        ///
        static ParamInfo const & findInfo(std::string const &);
        ///
@@ -55,7 +54,7 @@ public:
        /// Force inset into LTR environment if surroundings are RTL?
        bool forceLTR() const { return true; }
 private:
-       Inset * clone() const { return new InsetHyperlink(params()); }
+       Inset * clone() const { return new InsetHyperlink(*this); }
 };