]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inseturl.h
changelogs
[lyx.git] / src / insets / inseturl.h
index 3e8f712188e91ab724f8a8bed43df4abfa3a8068..24f55a846c85cf26878cb2bb922af681aae3a45c 100644 (file)
@@ -6,7 +6,7 @@
  *
  * \author José Matos
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef INSET_URL_H
@@ -23,34 +23,33 @@ class InsetUrl : public InsetCommand {
 public:
        ///
        explicit
-       InsetUrl(InsetCommandParams const &, bool same_id = false);
+       InsetUrl(InsetCommandParams const &);
        ///
-       virtual Inset * clone(Buffer const &, bool same_id = false) const {
-               return new InsetUrl(params(), same_id);
-       }
-       ///
-       Inset::Code lyxCode() const { return Inset::URL_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::URL_CODE; }
        ///
        void validate(LaTeXFeatures &) const;
        ///
-       string const getScreenLabel(Buffer const *) const;
+       std::string const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       void edit(BufferView *, int, int, mouse_button::state);
-       ///
-       void edit(BufferView * bv, bool front = true);
-       ///
        bool display() const { return false; }
        ///
-       int latex(Buffer const *, std::ostream &,
-                 bool fragile, bool free_spc) const;
+       int latex(Buffer const &, std::ostream &,
+                 OutputParams const &) const;
        ///
-       int ascii(Buffer const *, std::ostream &, int linelen) const;
+       int plaintext(Buffer const &, std::ostream &,
+                 OutputParams const &) const;
        ///
-       int linuxdoc(Buffer const *, std::ostream &) const;
+       int linuxdoc(Buffer const &, std::ostream &,
+                    OutputParams const &) const;
        ///
-       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
+       int docbook(Buffer const &, std::ostream &,
+                   OutputParams const &) const;
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const {
+               return std::auto_ptr<InsetBase>(new InsetUrl(params()));
+       }
 };
 
 #endif