]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inseturl.h
Make it compile when USE_BOOST_FORMAT is unset
[lyx.git] / src / insets / inseturl.h
index 095c71143ff0507aed12f462014eda255ae24ed1..a3c8c7562bc9fcb6e7f5bf2f4545f2bac9c4b169 100644 (file)
@@ -1,12 +1,13 @@
 // -*- 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
 
 struct LaTeXFeatures;
 
-/** The url inset  
+/** The url inset
  */
 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);
        }
@@ -35,12 +36,14 @@ public:
        ///
        void validate(LaTeXFeatures &) const;
        ///
-       string const getScreenLabel() const;
+       string const getScreenLabel(Buffer const *) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       void edit(BufferView *, int, int, unsigned int);
-        ///
+       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 &,
@@ -50,7 +53,7 @@ public:
        ///
        int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int DocBook(Buffer const *, std::ostream &) const;
+       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
 };
 
 #endif