X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetlabel.h;h=b4478c3d82c099206c864ddb4536d1a0fbb186f5;hb=26f1a5bfcae4b7fd7b946a1884c396d842b24925;hp=8fbfeeaa5a15f58d25bc7eb8e9e9c86f4aa28d5a;hpb=5f2e3c4c43f8e1736a2b7654595dfe6c175b4b3b;p=lyx.git diff --git a/src/insets/insetlabel.h b/src/insets/insetlabel.h index 8fbfeeaa5a..b4478c3d82 100644 --- a/src/insets/insetlabel.h +++ b/src/insets/insetlabel.h @@ -1,20 +1,17 @@ // -*- 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" @@ -23,30 +20,34 @@ public: /// InsetLabel(InsetCommandParams const &, bool same_id = false); /// + ~InsetLabel(); + /// virtual Inset * clone(Buffer const &, bool same_id = false) const { return new InsetLabel(params(), same_id); } /// + 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 const getLabelList() const; /// int latex(Buffer const *, std::ostream &, - bool fragile, bool free_spc) const; + bool fragile, bool free_spc) const; /// int ascii(Buffer const *, std::ostream &, int linelen) const; /// int linuxdoc(Buffer const *, std::ostream &) const; /// - int docBook(Buffer const *, std::ostream &) const; + int docbook(Buffer const *, std::ostream &, bool mixcont) const; }; #endif