]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.h
My patch from yesterday
[lyx.git] / src / insets / insetlabel.h
index acdce9647052c9769c5d0b6b88c1693897abeb17..b4478c3d82c099206c864ddb4536d1a0fbb186f5 100644 (file)
@@ -1,39 +1,42 @@
 // -*- C++ -*-
-/* This file is part of*
- * ======================================================
+/**
+ * \file insetlabel.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
- *      
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team
+ * \author Lars Gullik Bjønnes
  *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 #ifndef INSET_LABEL_H
 #define INSET_LABEL_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "insetcommand.h"
 
 class InsetLabel : public InsetCommand {
 public:
        ///
-       InsetLabel(InsetCommandParams const &);
+       InsetLabel(InsetCommandParams const &, bool same_id = false);
+       ///
+       ~InsetLabel();
        ///
-       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(); }
+       virtual dispatch_result localDispatch(FuncRequest const & cmd);
+       ///
+       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 +47,7 @@ public:
        ///
        int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int docBook(Buffer const *, std::ostream &) const;
+       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
 };
 
 #endif