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