]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inseturl.h
changelogs
[lyx.git] / src / insets / inseturl.h
index 4712afd948e8982e5e8ca1b221589a4033144cb8..24f55a846c85cf26878cb2bb922af681aae3a45c 100644 (file)
@@ -1,19 +1,17 @@
 // -*- C++ -*-
-/* This file is part of*
- * ======================================================
+/**
+ * \file inseturl.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author José Matos
  *
- *         Copyright 1997-2001 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS.
+ */
 
 #ifndef INSET_URL_H
 #define INSET_URL_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "insetcommand.h"
 
@@ -25,34 +23,33 @@ class InsetUrl : public InsetCommand {
 public:
        ///
        explicit
-       InsetUrl(InsetCommandParams const &, bool same_id = false);
-       ///
-       virtual Inset * clone(Buffer const &, bool same_id = false) const {
-               return new InsetUrl(params(), same_id);
-       }
+       InsetUrl(InsetCommandParams const &);
        ///
-       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, unsigned int);
-       ///
-       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 &) 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