]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inseturl.h
Enable the external inset to handle unknown templates gracefully.
[lyx.git] / src / insets / inseturl.h
index d077e33daebfe3ca7833428bf835e62fa48f96dc..e2a16a5a58f087e20f5a06804bcb6aa6894715ea 100644 (file)
@@ -1,36 +1,38 @@
 // -*- 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-2001 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"
 
 struct LaTeXFeatures;
 
-/** The url inset  
+/** The url inset
  */
 class InsetUrl : public InsetCommand {
 public:
        ///
        explicit
-       InsetUrl(InsetCommandParams const &, bool same_id = false);
+       InsetUrl(InsetCommandParams const &);
+       ///
+       ~InsetUrl();
        ///
-       virtual Inset * clone(Buffer const &, bool same_id = false) const {
-               return new InsetUrl(params(), same_id);
+       virtual Inset * clone() const {
+               return new InsetUrl(params());
        }
        ///
+       dispatch_result localDispatch(FuncRequest const & cmd);
+       ///
        Inset::Code lyxCode() const { return Inset::URL_CODE; }
        ///
        void validate(LaTeXFeatures &) const;
@@ -39,20 +41,16 @@ public:
        ///
        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;
+                 LatexRunParams const &) const;
        ///
        int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
        int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int docbook(Buffer const *, std::ostream &) const;
+       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
 };
 
 #endif