]> git.lyx.org Git - lyx.git/blob - src/insets/InsetBibitem.h
c48bc17b688c950ed1d88a750e2f0243db5826c9
[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         /// verify label and update references.
32         /**
33           * Overloaded from Inset::initView.
34           **/
35         void initView();
36         ///
37         void read(Lexer & lex);
38         ///
39         docstring screenLabel() const;
40         ///
41         EDITABLE editable() const { return IS_EDITABLE; }
42         ///
43         InsetCode lyxCode() const { return BIBITEM_CODE; }
44         ///
45         docstring bibLabel() const;
46         ///
47         int plaintext(odocstream &, OutputParams const &) const;
48         ///
49         virtual void fillWithBibKeys(BiblioInfo &, InsetIterator const &) const;
50         /// Update the counter of this inset
51         virtual void updateLabels(ParIterator const &);
52         ///
53         static ParamInfo const & findInfo(std::string const &);
54         ///
55         static std::string defaultCommand() { return "bibitem"; };
56         ///
57         static bool isCompatibleCommand(std::string const & s) 
58                 { return s == "bibitem"; }
59         ///
60         void updateCommand(docstring const & new_key, bool dummy = false);
61 protected:
62         ///
63         virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
64 private:
65         ///
66         virtual Inset * clone() const { return new InsetBibitem(*this); }
67         /// The label that is set by updateLabels
68         docstring autolabel_;
69         ///
70         static int key_counter;
71 };
72
73
74 /// Return the widest label in the Bibliography.
75 docstring const bibitemWidest(Buffer const &);
76
77
78 } // namespace lyx
79
80 #endif // INSET_BIBITEM_H