]> git.lyx.org Git - lyx.git/blob - src/insets/InsetCitation.h
Cocoa based Qt-4.6 needs to paint every character separately to match metrics computa...
[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 #include "Citation.h"
19
20 namespace lyx {
21
22 /////////////////////////////////////////////////////////////////////////
23 //
24 // InsetCitation
25 //
26 /////////////////////////////////////////////////////////////////////////
27
28 /// Used to insert citations
29 class InsetCitation : public InsetCommand
30 {
31 public:
32         ///
33         InsetCitation(Buffer * buf, InsetCommandParams const &);
34
35         /// \name Public functions inherited from Inset class
36         //@{
37         ///
38         bool isLabeled() const { return true; }
39         ///
40         bool hasSettings() const { return true; }
41         ///
42         docstring toolTip(BufferView const & bv, int x, int y) const;
43         ///
44         void doDispatch(Cursor & cur, FuncRequest & cmd);
45         ///
46         InsetCode lyxCode() const { return CITE_CODE; }
47         ///
48         void latex(otexstream &, OutputParams const &) const;
49         ///
50         int plaintext(odocstream &, OutputParams const &) const;
51         ///
52         int docbook(odocstream &, OutputParams const &) const;
53         ///
54         docstring xhtml(XHTMLStream &, OutputParams const &) const;
55         ///
56         void toString(odocstream &) const;
57         ///
58         void forToc(docstring &, size_t) const;
59         ///
60         void validate(LaTeXFeatures &) const;
61         ///
62         void updateBuffer(ParIterator const & it, UpdateType);
63         ///
64         void addToToc(DocIterator const &) const;
65         ///
66         docstring contextMenuName() const;
67         //@}
68
69         /// \name Static public methods obligated for InsetCommand derived classes
70         //@{
71         ///
72         static ParamInfo const & findInfo(std::string const &);
73         // FIXME This is the locus of the design problem we have.
74         // It really ought to do what default_cite_command() does,
75         // but to do that it needs to know what CiteEngine we are
76         // using.
77         static std::string defaultCommand() { return "cite"; }
78         ///
79         static bool isCompatibleCommand(std::string const & cmd);
80         //@}
81
82 private:
83         /// tries to make a pretty label and makes a basic one if not
84         docstring generateLabel(bool for_xhtml = false) const;
85         /// makes a pretty label
86         docstring complexLabel(bool for_xhtml = false) const;
87         /// makes a very basic label, in case we can't make a pretty one
88         docstring basicLabel(bool for_xhtml = false) const;
89
90         /// \name Private functions inherited from Inset class
91         //@{
92         ///
93         Inset * clone() const { return new InsetCitation(*this); }
94         //@}
95
96         /// \name Private functions inherited from InsetCommand class
97         //@{
98         ///
99         docstring screenLabel() const;
100         //@}
101
102         /// we'll eventually want to be able to get info on this from the 
103         /// various CiteEngines
104         static ParamInfo param_info_;
105
106         ///
107         struct Cache {
108                 Cache() : recalculate(true) {};
109                 ///
110                 bool recalculate;
111                 ///
112                 docstring generated_label;
113                 ///
114                 docstring screen_label;
115         };
116         ///
117         mutable Cache cache;
118 };
119
120
121 } // namespace lyx
122
123 #endif // INSET_CITATION_H