]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlCitation.h
Add a buffer_path arg to InsetGraphicsMailer's params2string, string2params.
[lyx.git] / src / frontends / controllers / ControlCitation.h
1 // -*- C++ -*-
2 /**
3  * \file ControlCitation.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Angus Leeming
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef CONTROLCITATION_H
13 #define CONTROLCITATION_H
14
15
16 #include "ControlCommand.h"
17 #include "biblio.h" // biblio::InfoMap
18
19 /** A controller for Citation dialogs.
20  */
21 class ControlCitation : public ControlCommand {
22 public:
23         ///
24         ControlCitation(Dialog &);
25
26         ///
27         virtual bool initialiseParams(string const & data);
28         /// clean-up on hide.
29         virtual void clearParams();
30
31         /** Disconnect from the inset when the Apply button is pressed.
32          *  Allows easy insertion of multiple citations.
33          */
34         virtual bool disconnectOnApply() const { return true; }
35
36         /// Returns a reference to the map of stored keys
37         biblio::InfoMap const & bibkeysInfo() const;
38
39         ///
40         bool usingNatbib() const;
41         /// Possible citations based on this key
42         std::vector<string> const getCiteStrings(string const & key) const;
43
44         /// available CiteStyle-s (depends on availability of Natbib
45         static std::vector<biblio::CiteStyle> const & getCiteStyles() {
46                 return citeStyles_;
47         }
48 private:
49         /// The info associated with each key
50         biblio::InfoMap bibkeysInfo_;
51
52         ///
53         static std::vector<biblio::CiteStyle> citeStyles_;
54 };
55
56
57 #endif // CONTROLCITATION_H