]> git.lyx.org Git - lyx.git/blob - src/insets/InsetInclude.h
Probably fix #10850 compiler warnings.
[lyx.git] / src / insets / InsetInclude.h
1 // -*- C++ -*-
2 /**
3  * \file InsetInclude.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  * \author Richard Heck (conversion to InsetCommand)
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef INSET_INCLUDE_H
14 #define INSET_INCLUDE_H
15
16 #include "InsetCommand.h"
17
18 #include "RenderButton.h"
19
20 #include "support/unique_ptr.h"
21
22
23 namespace lyx {
24
25 class BiblioInfo;
26 class Buffer;
27 class Dimension;
28 class InsetCommandParams;
29 class InsetLabel;
30 class LaTeXFeatures;
31 class RenderMonitoredPreview;
32
33 namespace support {
34         class FileNameList;
35 }
36
37 /// for including tex/lyx files
38 class InsetInclude : public InsetCommand {
39         // Disable assignment operator, since it is not used, and cannot be
40         // implemented consistently with the copy constructor, because
41         // include_label is const.
42         InsetInclude & operator=(InsetInclude const &);
43 public:
44         ///
45         InsetInclude(Buffer * buf, InsetCommandParams const &);
46         ///
47         ~InsetInclude();
48
49         ///
50         void setChildBuffer(Buffer * buffer);
51         /// \return the child buffer if the file is a LyX doc and could be loaded
52         Buffer * getChildBuffer() const;
53
54         /** Update the cache with all bibfiles in use of the child buffer
55          *  (including bibfiles of grandchild documents).
56          *  Does nothing if the child document is not loaded to prevent
57          *  automatic loading of all child documents upon loading the master.
58          *  \param buffer the Buffer containing this inset.
59          */
60         void updateBibfilesCache();
61
62         ///
63         void updateCommand();
64         ///
65         void write(std::ostream &) const;
66
67         /// \name Public functions inherited from Inset class
68         //@{
69         ///
70         void setBuffer(Buffer & buffer);
71         ///
72         bool isLabeled() const { return true; }
73         /// Override these InsetButton methods if Previewing
74         void metrics(MetricsInfo & mi, Dimension & dim) const;
75         ///
76         void draw(PainterInfo & pi, int x, int y) const;
77         ///
78         DisplayType display() const;
79         ///
80         InsetCode lyxCode() const { return INCLUDE_CODE; }
81         ///
82         docstring layoutName() const;
83         /** Fills \c key
84          *  \param keys the list of bibkeys in the child buffer.
85          *  \param it not used here
86          */
87         void collectBibKeys(InsetIterator const &, support::FileNameList &) const;
88         ///
89         bool hasSettings() const { return true; }
90         ///
91         void latex(otexstream &, OutputParams const &) const;
92         ///
93         int plaintext(odocstringstream & ods, OutputParams const & op,
94                       size_t max_length = INT_MAX) const;
95         ///
96         int docbook(odocstream &, OutputParams const &) const;
97         ///
98         docstring xhtml(XHTMLStream &, OutputParams const &) const;
99         ///
100         void validate(LaTeXFeatures &) const;
101         ///
102         void addPreview(DocIterator const &, graphics::PreviewLoader &) const;
103         ///
104         void addToToc(DocIterator const & di, bool output_active,
105                                   UpdateType utype, TocBackend & backend) const;
106         ///
107         void updateBuffer(ParIterator const &, UpdateType);
108         ///
109         std::string contextMenuName() const;
110         //@}
111
112         /// \name Static public methods obligated for InsetCommand derived classes
113         //@{
114         ///
115         static ParamInfo const & findInfo(std::string const &);
116         ///
117         static std::string defaultCommand() { return "include"; }
118         ///
119         static bool isCompatibleCommand(std::string const & s);
120         //@}
121
122 protected:
123         ///
124         InsetInclude(InsetInclude const &);
125
126 private:
127         /** Slot receiving a signal that the external file has changed
128          *  and the preview should be regenerated.
129          */
130         void fileChanged() const;
131         /// \return loaded Buffer or zero if the file loading did not proceed.
132         Buffer * loadIfNeeded() const;
133         /// launch external application
134         void editIncluded(std::string const & file);
135         ///
136         bool isChildIncluded() const;
137
138         /// \name Private functions inherited from Inset class
139         //@{
140         Inset * clone() const { return new InsetInclude(*this); }
141         ///
142         void doDispatch(Cursor & cur, FuncRequest & cmd);
143         ///
144         bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
145         //@}
146
147         /// \name Private functions inherited from InsetCommand class
148         //@{
149         /// set the parameters
150         // FIXME:InsetCommmand::setParams is not virtual
151         void setParams(InsetCommandParams const & params);
152         /// get the text displayed on the button
153         docstring screenLabel() const;
154         //@}
155
156         /// holds the entity name that defines the file location (SGML)
157         docstring const include_label;
158
159         /// The pointer never changes although *preview_'s contents may.
160         unique_ptr<RenderMonitoredPreview> const preview_;
161
162         ///
163         mutable bool failedtoload_;
164         /// cache
165         mutable bool set_label_;
166         mutable RenderButton button_;
167         mutable docstring listings_label_;
168         InsetLabel * label_;
169         mutable Buffer * child_buffer_;
170 };
171
172
173 } // namespace lyx
174
175 #endif // INSET_INCLUDE_H