]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.h
Enable the external inset to handle unknown templates gracefully.
[lyx.git] / src / insets / insetlabel.h
index b4478c3d82c099206c864ddb4536d1a0fbb186f5..10013a0da60eb3706138c7410f3e79025f530222 100644 (file)
 class InsetLabel : public InsetCommand {
 public:
        ///
-       InsetLabel(InsetCommandParams const &, bool same_id = false);
+       InsetLabel(InsetCommandParams const &);
        ///
        ~InsetLabel();
        ///
-       virtual Inset * clone(Buffer const &, bool same_id = false) const {
-               return new InsetLabel(params(), same_id);
+       virtual Inset * clone() const {
+               return new InsetLabel(params());
        }
        ///
        virtual dispatch_result localDispatch(FuncRequest const & cmd);
@@ -34,14 +34,10 @@ public:
        ///
        Inset::Code lyxCode() const { return Inset::LABEL_CODE; }
        ///
-       void edit(BufferView *, int, int, mouse_button::state);
-       ///
-       void edit(BufferView * bv, bool front = true);
-       ///
        std::vector<string> const getLabelList() const;
        ///
        int latex(Buffer const *, std::ostream &,
-                 bool fragile, bool free_spc) const;
+                 LatexRunParams const &) const;
        ///
        int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///