]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inseturl.h
prevent crash when inserting minipage in table cell,
[lyx.git] / src / insets / inseturl.h
index 4f5d2693a4cfef6d2edcc20a963c3a3fd517f16d..6ad0f0aacb2ad8ee11cfcf44d89b8b87a43749c8 100644 (file)
@@ -23,15 +23,17 @@ 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 std::auto_ptr<InsetBase> clone() const {
+               return std::auto_ptr<InsetBase>(new InsetUrl(params()));
        }
        ///
-       Inset::Code lyxCode() const { return Inset::URL_CODE; }
+       dispatch_result localDispatch(FuncRequest const & cmd);
+       ///
+       InsetOld::Code lyxCode() const { return InsetOld::URL_CODE; }
        ///
        void validate(LaTeXFeatures &) const;
        ///
@@ -39,14 +41,10 @@ public:
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       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 &,
-                 bool fragile, bool free_spc) const;
+                 LatexRunParams const &) const;
        ///
        int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///