]> git.lyx.org Git - lyx.git/blob - src/insets/insetlabel.h
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / insetlabel.h
1 // -*- C++ -*-
2 /**
3  * \file insetlabel.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef INSET_LABEL_H
13 #define INSET_LABEL_H
14
15
16 #include "insetcommand.h"
17
18 class InsetLabel : public InsetCommand {
19 public:
20         ///
21         InsetLabel(InsetCommandParams const &, bool same_id = false);
22         ///
23         ~InsetLabel();
24         ///
25         virtual Inset * clone(Buffer const &, bool same_id = false) const {
26                 return new InsetLabel(params(), same_id);
27         }
28         ///
29         virtual dispatch_result localDispatch(FuncRequest const & cmd);
30         ///
31         string const getScreenLabel(Buffer const *) const { return getContents(); }
32         ///
33         EDITABLE editable() const { return IS_EDITABLE; }
34         ///
35         Inset::Code lyxCode() const { return Inset::LABEL_CODE; }
36         ///
37         std::vector<string> const getLabelList() const;
38         ///
39         int latex(Buffer const *, std::ostream &,
40                   LatexRunParams const &) const;
41         ///
42         int ascii(Buffer const *, std::ostream &, int linelen) const;
43         ///
44         int linuxdoc(Buffer const *, std::ostream &) const;
45         ///
46         int docbook(Buffer const *, std::ostream &, bool mixcont) const;
47 };
48
49 #endif