]> git.lyx.org Git - lyx.git/blob - src/insets/insetlabel.h
Enable convertDefault.sh to run even if its executable bit is not set.
[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 &);
22         ///
23         ~InsetLabel();
24         ///
25         virtual std::auto_ptr<InsetBase> clone() const {
26                 return std::auto_ptr<InsetBase>(new InsetLabel(params()));
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         InsetOld::Code lyxCode() const { return InsetOld::LABEL_CODE; }
36         ///
37         void getLabelList(std::vector<string> &) 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