]> git.lyx.org Git - lyx.git/blob - src/insets/insetbibtex.h
the dispatch patch
[lyx.git] / src / insets / insetbibtex.h
1 // -*- C++ -*-
2 /**
3  * \file insetbibtex.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_BIBTEX_H
13 #define INSET_BIBTEX_H
14
15
16 #include <vector>
17 #include "insetcommand.h"
18
19 /** Used to insert BibTeX's information
20   */
21 class InsetBibtex : public InsetCommand {
22 public:
23         ///
24         InsetBibtex(InsetCommandParams const &);
25         ///
26         ~InsetBibtex();
27         ///
28         std::auto_ptr<InsetBase> clone() const;
29         ///
30         void metrics(MetricsInfo &, Dimension &) const;
31         ///
32         void draw(PainterInfo & pi, int x, int y) const;
33         ///
34         std::string const getScreenLabel(Buffer const &) const;
35         ///
36         EDITABLE editable() const { return IS_EDITABLE; }
37         ///
38         InsetOld::Code lyxCode() const { return InsetOld::BIBTEX_CODE; }
39         ///
40         int latex(Buffer const &, std::ostream &,
41                   LatexRunParams const &) const;
42         ///
43         void fillWithBibKeys(Buffer const & buffer,
44                 std::vector<std::pair<std::string,std::string> > & keys) const;
45         ///
46         std::vector<std::string> const getFiles(Buffer const &) const;
47         ///
48         bool addDatabase(std::string const &);
49         ///
50         bool delDatabase(std::string const &);
51 protected:
52         ///
53         virtual
54         dispatch_result
55         priv_dispatch(FuncRequest const & cmd, idx_type &, pos_type &);
56 };
57
58 #endif // INSET_BIBTEX_H