]> git.lyx.org Git - lyx.git/blob - src/insets/InsetBibitem.h
* Inset: Prepare for an eventual merge of updateLabels() and addToToc()
[lyx.git] / src / insets / InsetBibitem.h
1 // -*- C++ -*-
2 /**
3  * \file InsetBibitem.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Alejandro Aguilar Sierra
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef INSET_BIBITEM_H
13 #define INSET_BIBITEM_H
14
15
16 #include "InsetCommand.h"
17 #include "BiblioInfo.h"
18
19
20 namespace lyx {
21
22 /** Used to insert bibitem's information (key and label)
23
24   Must be automatically inserted as the first object in a
25   bibliography paragraph.
26   */
27 class InsetBibitem : public InsetCommand {
28 public:
29         ///
30         InsetBibitem(InsetCommandParams const &);
31         ///
32         void read(Buffer const &, Lexer & lex);
33         ///
34         docstring const getScreenLabel(Buffer const &) const;
35         ///
36         EDITABLE editable() const { return IS_EDITABLE; }
37         ///
38         InsetCode lyxCode() const { return BIBITEM_CODE; }
39         ///
40         docstring const getBibLabel() const;
41         ///
42         int plaintext(Buffer const &, odocstream &, OutputParams const &) const;
43         ///
44         virtual void fillWithBibKeys(Buffer const &,
45                 BiblioInfo &, InsetIterator const &) const;
46         /// Update the counter of this inset
47         virtual void updateLabels(Buffer const &, ParIterator const &);
48         ///
49         static CommandInfo const * findInfo(std::string const &);
50         ///
51         static std::string defaultCommand() { return "bibitem"; };
52         ///
53         static bool isCompatibleCommand(std::string const & s) 
54                 { return s == "bibitem"; }
55 protected:
56         ///
57         virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
58 private:
59         virtual Inset * clone() const;
60
61         /// The label that is set by updateLabels
62         docstring autolabel_;
63         ///
64         static int key_counter;
65 };
66
67
68 /// Return the widest label in the Bibliography.
69 docstring const bibitemWidest(Buffer const &);
70
71
72 } // namespace lyx
73
74 #endif // INSET_BIBITEM_H