]> git.lyx.org Git - lyx.git/blob - src/insets/insetbibitem.h
Part of IU.
[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
18 class Buffer;
19
20 /** Used to insert bibitem's information (key and label)
21
22   Must be automatically inserted as the first object in a
23   bibliography paragraph.
24   */
25 class InsetBibitem : public InsetCommand {
26 public:
27         ///
28         InsetBibitem(InsetCommandParams const &);
29         ///
30         std::auto_ptr<InsetBase> clone() const;
31         /** Currently \bibitem is used as a LyX2.x command,
32             so we need this method.
33         */
34         void write(Buffer const &, std::ostream &) const;
35         ///
36         void read(Buffer const &, LyXLex & lex);
37         ///
38         virtual std::string const getScreenLabel(Buffer const &) const;
39         ///
40         EDITABLE editable() const { return IS_EDITABLE; }
41         ///
42         InsetOld::Code lyxCode() const { return InsetOld::BIBITEM_CODE; }
43         /// keep .lyx format compatible
44         bool directWrite() const { return true; }
45         ///
46         void setCounter(int);
47         ///
48         int getCounter() const { return counter; }
49         ///
50         std::string const getBibLabel() const;
51 protected:
52         ///
53         virtual
54         DispatchResult
55         priv_dispatch(LCursor & cur, FuncRequest const & cmd);
56 private:
57         ///
58         int counter;
59         ///
60         static int key_counter;
61 };
62
63 #endif // INSET_BIBITEM_H