]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inseturl.h
changelogs
[lyx.git] / src / insets / inseturl.h
index e76161e78057e5e8e9222b186301574e74eae5c2..24f55a846c85cf26878cb2bb922af681aae3a45c 100644 (file)
@@ -1,30 +1,23 @@
 // -*- 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
- *      
- *         Copyright 1997-2000 The LyX Team.
- * 
- * ====================================================== */
+ * \author José Matos
+ *
+ * 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"
-#include <sigc++/signal_system.h>
 
 struct LaTeXFeatures;
 
-#ifdef SIGC_CXX_NAMESPACES
-using SigC::Signal0;
-#endif
-
-/** The url inset  
+/** The url inset
  */
 class InsetUrl : public InsetCommand {
 public:
@@ -32,34 +25,31 @@ public:
        explicit
        InsetUrl(InsetCommandParams const &);
        ///
-       ~InsetUrl();
-        ///
-       Inset * Clone() const { return new InsetUrl(params()); }
-       ///
-       Inset::Code LyxCode() const { return Inset::URL_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::URL_CODE; }
        ///
-       void Validate(LaTeXFeatures &) const;
+       void validate(LaTeXFeatures &) const;
        ///
-       string getScreenLabel() const;
+       std::string const getScreenLabel(Buffer const &) const;
        ///
-       EDITABLE Editable() const { return IS_EDITABLE; }
+       EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       char const * EditMessage() const;
-       ///
-       void Edit(BufferView *, int, int, unsigned int);
-        ///
        bool display() const { return false; }
        ///
-       int Latex(Buffer const *, std::ostream &,
-                 bool fragile, bool free_spc) const;
-       ///
-       int Ascii(Buffer const *, std::ostream &) const;
+       int latex(Buffer const &, std::ostream &,
+                 OutputParams const &) const;
        ///
-       int Linuxdoc(Buffer const *, std::ostream &) const;
+       int plaintext(Buffer const &, std::ostream &,
+                 OutputParams const &) const;
        ///
-       int DocBook(Buffer const *, std::ostream &) const;
+       int linuxdoc(Buffer const &, std::ostream &,
+                    OutputParams const &) const;
        ///
-       Signal0<void> hide;
+       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