]> git.lyx.org Git - lyx.git/blob - src/insets/insetlabel.h
Turn LyX into a singleton class. Kill the BufferView cache.
[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 #include "insetcommand.h"
16
17 class InsetLabel : public InsetCommand {
18 public:
19         ///
20         InsetLabel(InsetCommandParams const &);
21         ///
22         ~InsetLabel();
23         ///
24         std::auto_ptr<InsetBase> clone() const;
25         ///
26         virtual dispatch_result localDispatch(FuncRequest const & cmd);
27         ///
28         std::string const getScreenLabel(Buffer const &) const;
29         ///
30         EDITABLE editable() const { return IS_EDITABLE; }
31         ///
32         InsetOld::Code lyxCode() const { return InsetOld::LABEL_CODE; }
33         /// Appends \c list with this label
34         void getLabelList(Buffer const &, std::vector<std::string> & list) const;
35         ///
36         int latex(Buffer const &, std::ostream &,
37                   LatexRunParams const &) const;
38         ///
39         int ascii(Buffer const &, std::ostream &, int linelen) const;
40         ///
41         int linuxdoc(Buffer const &, std::ostream &) const;
42         ///
43         int docbook(Buffer const &, std::ostream &, bool mixcont) const;
44 };
45
46 #endif