]> git.lyx.org Git - lyx.git/blob - src/insets/InsetInclude.h
80e8c3915a1148545d6259bbc3e78e5dd1807411
[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 "BiblioInfo.h"
19 #include "Counters.h"
20 #include "InsetCommandParams.h"
21 #include "RenderButton.h"
22 #include "EmbeddedFiles.h"
23
24 #include <boost/scoped_ptr.hpp>
25
26 namespace lyx {
27
28 class Buffer;
29 class Dimension;
30 class InsetLabel;
31 class LaTeXFeatures;
32 class RenderMonitoredPreview;
33
34 namespace support {
35         class FileNameList;
36 }
37
38 /// for including tex/lyx files
39 class InsetInclude : public InsetCommand {
40 public:
41         ///
42         InsetInclude(InsetCommandParams const &);
43         ~InsetInclude();
44
45         void setBuffer(Buffer & buffer);
46         bool isLabeled() const { return true; }
47
48         /// Override these InsetButton methods if Previewing
49         void metrics(MetricsInfo & mi, Dimension & dim) const;
50         ///
51         void draw(PainterInfo & pi, int x, int y) const;
52         ///
53         DisplayType display() const;
54         ///
55         InsetCode lyxCode() const { return INCLUDE_CODE; }
56         /** Fills \c keys
57          *  \param buffer the Buffer containing this inset.
58          *  \param keys the list of bibkeys in the child buffer.
59          *  \param it not used here
60          */
61         void fillWithBibKeys(BiblioInfo & keys, InsetIterator const & it) const;
62         
63         /** Update the cache with all bibfiles in use of the child buffer
64          *  (including bibfiles of grandchild documents).
65          *  Does nothing if the child document is not loaded to prevent
66          *  automatic loading of all child documents upon loading the master.
67          *  \param buffer the Buffer containing this inset.
68          */
69         void updateBibfilesCache();
70         /** Return the cache with all bibfiles in use of the child buffer
71          *  (including bibfiles of grandchild documents).
72          *  Return an empty vector if the child doc is not loaded.
73          *  \param buffer the Buffer containing this inset.
74          */
75         EmbeddedFileList const &
76                 getBibfilesCache(Buffer const & buffer) const;
77         ///
78         EDITABLE editable() const { return IS_EDITABLE; }
79         ///
80         int latex(odocstream &, OutputParams const &) const;
81         ///
82         int plaintext(odocstream &, OutputParams const &) const;
83         ///
84         int docbook(odocstream &, OutputParams const &) const;
85         ///
86         void validate(LaTeXFeatures &) const;
87         ///
88         void addPreview(graphics::PreviewLoader &) const;
89         ///
90         void addToToc(ParConstIterator const &) const;
91         ///
92         void updateLabels(ParIterator const &);
93         ///
94         static ParamInfo const & findInfo(std::string const &);
95         ///
96         static std::string defaultCommand() { return "include"; }
97         ///
98         static bool isCompatibleCommand(std::string const & s);
99 protected:
100         InsetInclude(InsetInclude const &);
101         ///
102         void doDispatch(Cursor & cur, FuncRequest & cmd);
103 private:
104         Inset * clone() const { return new InsetInclude(*this); }
105
106         /** Slot receiving a signal that the external file has changed
107          *  and the preview should be regenerated.
108          */
109         void fileChanged() const;
110
111         /// set the parameters
112         void setParams(InsetCommandParams const & params);
113         /// get the text displayed on the button
114         docstring screenLabel() const;
115         /// holds the entity name that defines the file location (SGML)
116         docstring const include_label;
117
118         /// The pointer never changes although *preview_'s contents may.
119         boost::scoped_ptr<RenderMonitoredPreview> const preview_;
120
121         /// cache
122         mutable bool set_label_;
123         mutable RenderButton button_;
124         mutable docstring listings_label_;
125         InsetLabel * label_;
126 };
127
128 /// return loaded Buffer or zero if the file loading did not proceed.
129 Buffer * loadIfNeeded(Buffer const & parent, InsetCommandParams const & params);
130
131 } // namespace lyx
132
133 #endif // INSET_INCLUDE_H