]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inseturl.h
static_cast-based key/mouse-state. Kill insetKeyPress.
[lyx.git] / src / insets / inseturl.h
index 095c71143ff0507aed12f462014eda255ae24ed1..f99d63244e9ff3bae295531e29efe30432fe51f4 100644 (file)
@@ -1,11 +1,11 @@
 // -*- C++ -*-
 /* This file is part of*
- * ====================================================== 
+ * ======================================================
  *
  *           LyX, The Document Processor
- *      
+ *
  *         Copyright 1997-2001 The LyX Team.
- * 
+ *
  * ====================================================== */
 
 #ifndef 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 +35,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 +52,7 @@ public:
        ///
        int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int DocBook(Buffer const *, std::ostream &) const;
+       int docbook(Buffer const *, std::ostream &) const;
 };
 
 #endif