]> git.lyx.org Git - lyx.git/blob - src/insets/InsetCitation.h
Whitespace
[lyx.git] / src / insets / InsetCitation.h
1 // -*- C++ -*-
2 /**
3  * \file InsetCitation.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  * \author Herbert Voß
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef INSET_CITATION_H
14 #define INSET_CITATION_H
15
16 #include "InsetCommand.h"
17
18 namespace lyx {
19
20 /////////////////////////////////////////////////////////////////////////
21 //
22 // InsetCitation
23 //
24 /////////////////////////////////////////////////////////////////////////
25
26 /// Used to insert citations
27 class InsetCitation : public InsetCommand
28 {
29 public:
30         ///
31         InsetCitation(Buffer * buf, InsetCommandParams const &);
32         ///
33         ~InsetCitation();
34
35         ///
36         bool addKey(std::string const & key);
37
38         /// \name Public functions inherited from Inset class
39         //@{
40         ///
41         bool isLabeled() const { return true; }
42         ///
43         bool hasSettings() const { return true; }
44         ///
45         docstring toolTip(BufferView const & bv, int x, int y) const;
46         ///
47         void doDispatch(Cursor & cur, FuncRequest & cmd);
48         ///
49         InsetCode lyxCode() const { return CITE_CODE; }
50         ///
51         void latex(otexstream &, OutputParams const &) const;
52         ///
53         int plaintext(odocstringstream & ods, OutputParams const & op,
54                       size_t max_length = INT_MAX) const;
55         ///
56         int docbook(odocstream &, OutputParams const &) const;
57         ///
58         docstring xhtml(XHTMLStream &, OutputParams const &) const;
59         ///
60         void toString(odocstream &) const;
61         ///
62         void forOutliner(docstring &, size_t) const;
63         ///
64         void validate(LaTeXFeatures &) const {}
65         ///
66         void updateBuffer(ParIterator const & it, UpdateType);
67         ///
68         void addToToc(DocIterator const & di, bool output_active) const;
69         ///
70         std::string contextMenuName() const;
71         //@}
72
73         /// \name Static public methods obligated for InsetCommand derived classes
74         //@{
75         ///
76         static ParamInfo const & findInfo(std::string const &);
77         ///
78         static std::string defaultCommand() { return "cite"; }
79         ///
80         static bool isCompatibleCommand(std::string const & cmd);
81         //@}
82
83 private:
84         /// tries to make a pretty label and makes a basic one if not
85         docstring generateLabel(bool for_xhtml = false) const;
86         /// makes a pretty label
87         docstring complexLabel(bool for_xhtml = false) const;
88         /// makes a very basic label, in case we can't make a pretty one
89         docstring basicLabel(bool for_xhtml = false) const;
90
91         /// \name Private functions inherited from Inset class
92         //@{
93         ///
94         Inset * clone() const { return new InsetCitation(*this); }
95         //@}
96
97         /// \name Private functions inherited from InsetCommand class
98         //@{
99         ///
100         docstring screenLabel() const;
101         //@}
102
103         /// we'll eventually want to be able to get info on this from the
104         /// various CiteEngines
105         static ParamInfo param_info_;
106
107         ///
108         struct Cache {
109                 Cache() : recalculate(true) {}
110                 ///
111                 bool recalculate;
112                 ///
113                 docstring generated_label;
114                 ///
115                 docstring screen_label;
116         };
117         ///
118         mutable Cache cache;
119 };
120
121
122 } // namespace lyx
123
124 #endif // INSET_CITATION_H