]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inseturl.h
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / inseturl.h
index 4712afd948e8982e5e8ca1b221589a4033144cb8..dd93b7bc84751ea54ce2bea53da9d380e00ce34e 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"
 
@@ -27,10 +25,14 @@ public:
        explicit
        InsetUrl(InsetCommandParams const &, bool same_id = false);
        ///
+       ~InsetUrl();
+       ///
        virtual Inset * clone(Buffer const &, bool same_id = false) const {
                return new InsetUrl(params(), same_id);
        }
        ///
+       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