]> git.lyx.org Git - lyx.git/blob - src/insets/InsetCitation.h
c7cd8dcb604b1d8469bbd20b5e8d2aa7328456e6
[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 #include "Citation.h"
18
19 namespace lyx {
20
21 /////////////////////////////////////////////////////////////////////////
22 //
23 // InsetCitation
24 //
25 /////////////////////////////////////////////////////////////////////////
26
27 /// Used to insert citations
28 class InsetCitation : public InsetCommand
29 {
30 public:
31         ///
32         InsetCitation(Buffer * buf, InsetCommandParams const &);
33         ///
34         ~InsetCitation();
35
36         ///
37         bool addKey(std::string const & key);
38
39         /// \name Public functions inherited from Inset class
40         //@{
41         ///
42         bool isLabeled() const { return true; }
43         ///
44         bool hasSettings() const { return true; }
45         ///
46         docstring toolTip(BufferView const & bv, int x, int y) const;
47         ///
48         void doDispatch(Cursor & cur, FuncRequest & cmd);
49         ///
50         bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
51         ///
52         InsetCode lyxCode() const { return CITE_CODE; }
53         ///
54         void latex(otexstream &, OutputParams const &) const;
55         ///
56         int plaintext(odocstringstream & ods, OutputParams const & op,
57                       size_t max_length = INT_MAX) const;
58         ///
59         int docbook(odocstream &, OutputParams const &) const;
60         ///
61         docstring xhtml(XMLStream &, OutputParams const &) const;
62         ///
63         void toString(odocstream &) const;
64         ///
65         void forOutliner(docstring &, size_t const, bool const) const;
66         ///
67         void updateBuffer(ParIterator const & it, UpdateType, bool const deleted = false);
68         ///
69         void addToToc(DocIterator const & di, bool output_active,
70                                   UpdateType utype, TocBackend & backend) const;
71         ///
72         std::string contextMenuName() const;
73         ///
74         bool forceLTR(OutputParams const &) const;
75         //@}
76
77         /// \name Static public methods obligated for InsetCommand derived classes
78         //@{
79         ///
80         static ParamInfo const & findInfo(std::string const &);
81         ///
82         static std::string defaultCommand() { return "cite"; }
83         ///
84         static bool isCompatibleCommand(std::string const &);
85         //@}
86         ///
87         typedef std::vector<std::pair<docstring, docstring>> QualifiedList;
88         ///
89         void redoLabel() { cache.recalculate = true; }
90         ///
91         CitationStyle getCitationStyle(BufferParams const & bp, std::string const & input,
92                                        std::vector<CitationStyle> const & valid_styles) const;
93         ///
94         QualifiedList getQualifiedLists(docstring const & p) const;
95         ///
96         static bool last_literal;
97
98 private:
99         /// tries to make a pretty label and makes a basic one if not
100         docstring generateLabel(bool for_xhtml = false) const;
101         /// makes a pretty label
102         docstring complexLabel(bool for_xhtml = false) const;
103         /// makes a very basic label, in case we can't make a pretty one
104         docstring basicLabel(bool for_xhtml = false) const;
105
106         /// \name Private functions inherited from Inset class
107         //@{
108         ///
109         Inset * clone() const { return new InsetCitation(*this); }
110         //@}
111
112         /// \name Private functions inherited from InsetCommand class
113         //@{
114         ///
115         docstring screenLabel() const;
116         //@}
117
118         ///
119         struct Cache {
120                 Cache() : recalculate(true) {}
121                 ///
122                 bool recalculate;
123                 ///
124                 docstring generated_label;
125                 ///
126                 docstring screen_label;
127         };
128         ///
129         mutable Cache cache;
130 };
131
132
133 } // namespace lyx
134
135 #endif // INSET_CITATION_H