]> git.lyx.org Git - lyx.git/blob - src/insets/insetlabel.h
changelogs
[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         std::string const getScreenLabel(Buffer const &) const;
23         ///
24         EDITABLE editable() const { return IS_EDITABLE; }
25         ///
26         InsetOld::Code lyxCode() const { return InsetOld::LABEL_CODE; }
27         /// Appends \c list with this label
28         void getLabelList(Buffer const &, std::vector<std::string> & list) const;
29         ///
30         int latex(Buffer const &, std::ostream &,
31                   OutputParams const &) const;
32         ///
33         int plaintext(Buffer const &, std::ostream &,
34                   OutputParams const &) const;
35         ///
36         int linuxdoc(Buffer const &, std::ostream &,
37                      OutputParams const &) const;
38         ///
39         int docbook(Buffer const &, std::ostream &,
40                     OutputParams const &) const;
41 protected:
42         virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
43 private:
44         virtual std::auto_ptr<InsetBase> doClone() const;
45 };
46
47 #endif