]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inseturl.h
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / inseturl.h
index 095c71143ff0507aed12f462014eda255ae24ed1..d077e33daebfe3ca7833428bf835e62fa48f96dc 100644 (file)
@@ -26,7 +26,7 @@ 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,22 +35,24 @@ 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 * bv, bool front = true);
+       ///
        bool display() const { return false; }
        ///
        int latex(Buffer const *, std::ostream &,
-                 bool fragile, bool free_spc) const;
+                 bool fragile, bool free_spc) 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 &) const;
 };
 
 #endif