]> git.lyx.org Git - lyx.git/blob - src/insets/InsetInclude.h
a12c114b2eeb8f7e314e64665298ac38ff9c1602
[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 "BiblioInfo.h"
17 #include "InsetCommand.h"
18 #include "InsetCommandParams.h"
19 #include "RenderButton.h"
20 #include "MailInset.h"
21 #include "Counters.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 /// for including tex/lyx files
35 class InsetInclude : public InsetCommand {
36 public:
37         ///
38         InsetInclude(InsetCommandParams const &);
39         ~InsetInclude();
40
41         void setBuffer(Buffer & buffer);
42
43         /// Override these InsetButton methods if Previewing
44         void metrics(MetricsInfo & mi, Dimension & dim) const;
45         ///
46         void draw(PainterInfo & pi, int x, int y) const;
47         ///
48         DisplayType display() const;
49         ///
50         InsetCode lyxCode() const { return INCLUDE_CODE; }
51         /** Fills \c list
52          *  \param buffer the Buffer containing this inset.
53          *  \param list the list of labels in the child buffer.
54          */
55         void getLabelList(std::vector<docstring> & list) const;
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         /// child document can be embedded
94         void registerEmbeddedFiles(EmbeddedFileList &) const;
95         ///
96         void updateEmbeddedFile(EmbeddedFile const & file);
97         ///
98         static ParamInfo const & findInfo(std::string const &);
99         ///
100         static std::string defaultCommand() { return "include"; };
101         ///
102         static bool isCompatibleCommand(std::string const & s);
103 protected:
104         InsetInclude(InsetInclude const &);
105         ///
106         void doDispatch(Cursor & cur, FuncRequest & cmd);
107 private:
108         Inset * clone() const { return new InsetInclude(*this); }
109
110         /** Slot receiving a signal that the external file has changed
111          *  and the preview should be regenerated.
112          */
113         void fileChanged() const;
114
115         /// set the parameters
116         void setParams(InsetCommandParams const & params);
117         /// get the text displayed on the button
118         docstring screenLabel() const;
119         /// holds the entity name that defines the file location (SGML)
120         docstring const include_label;
121
122         /// The pointer never changes although *preview_'s contents may.
123         boost::scoped_ptr<RenderMonitoredPreview> const preview_;
124
125         /// cache
126         mutable bool set_label_;
127         mutable RenderButton button_;
128         mutable docstring listings_label_;
129         InsetLabel * label_;
130 };
131
132 /// return loaded Buffer or zero if the file loading did not proceed.
133 Buffer * loadIfNeeded(Buffer const & parent, InsetCommandParams const & params);
134
135 } // namespace lyx
136
137 #endif // INSETINCLUDE_H