]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.h
move inset related stuff from src/graphics to src/inset/
[lyx.git] / src / insets / insetlabel.h
index acdce9647052c9769c5d0b6b88c1693897abeb17..823bf73071cd106be0a825a547bc011797d05c3f 100644 (file)
@@ -3,7 +3,7 @@
  * ======================================================
  *
  *           LyX, The Document Processor
- *      
+ *
  *           Copyright 1995 Matthias Ettrich
  *           Copyright 1995-2001 The LyX Team
  *
 class InsetLabel : public InsetCommand {
 public:
        ///
-       InsetLabel(InsetCommandParams const &);
+       InsetLabel(InsetCommandParams const &, bool same_id = false);
        ///
-       virtual Inset * clone(Buffer const &) const {
-               return new InsetLabel(params());
+       virtual Inset * clone(Buffer const &, bool same_id = false) const {
+               return new InsetLabel(params(), same_id);
        }
        ///
-       string const getScreenLabel() const { return getContents(); }
+       string const getScreenLabel(Buffer const *) const { return getContents(); }
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
        Inset::Code lyxCode() const { return Inset::LABEL_CODE; }
        ///
-       void edit(BufferView *, int, int, unsigned int);
+       void edit(BufferView *, int, int, mouse_button::state);
+       ///
+       void edit(BufferView * bv, bool front = true);
        ///
        std::vector<string> const getLabelList() const;
        ///
@@ -44,7 +46,7 @@ public:
        ///
        int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int docBook(Buffer const *, std::ostream &) const;
+       int docbook(Buffer const *, std::ostream &) const;
 };
 
 #endif