]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetref.h
Enable the external inset to handle unknown templates gracefully.
[lyx.git] / src / insets / insetref.h
index 9a5dac30df17acf2a083e76ac327b823517b8b18..41ac981dadebadf8119642a1006a785d71019ecd 100644 (file)
@@ -35,29 +35,29 @@ public:
        ///
        static string const & getName(int type);
 
-       ///
-       InsetRef(InsetCommandParams const &, Buffer const &, bool same_id = false);
-       ///
+
+       InsetRef(InsetCommandParams const &, Buffer const &);
+
+       InsetRef(InsetRef const &);
+
        ~InsetRef();
        ///
-       virtual Inset * clone(Buffer const & buffer, bool same_id = false) const {
-               return new InsetRef(params(), buffer, same_id);
+       virtual Inset * clone() const {
+               return new InsetRef(*this);
        }
        ///
+       dispatch_result localDispatch(FuncRequest const & cmd);
+       ///
        string const getScreenLabel(Buffer const *) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
        Inset::Code lyxCode() const { return Inset::REF_CODE; }
        ///
-       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;
        ///