]> git.lyx.org Git - lyx.git/blob - src/insets/InsetInclude.h
Remove embedding stuff from InsetBibtex.
[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(ParConstIterator const &) 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 protected:
97         InsetInclude(InsetInclude const &);
98         ///
99         void doDispatch(Cursor & cur, FuncRequest & cmd);
100 private:
101         Inset * clone() const { return new InsetInclude(*this); }
102
103         /** Slot receiving a signal that the external file has changed
104          *  and the preview should be regenerated.
105          */
106         void fileChanged() const;
107
108         /// set the parameters
109         void setParams(InsetCommandParams const & params);
110         /// get the text displayed on the button
111         docstring screenLabel() const;
112         /// holds the entity name that defines the file location (SGML)
113         docstring const include_label;
114
115         /// The pointer never changes although *preview_'s contents may.
116         boost::scoped_ptr<RenderMonitoredPreview> const preview_;
117
118         /// cache
119         mutable bool set_label_;
120         mutable RenderButton button_;
121         mutable docstring listings_label_;
122         InsetLabel * label_;
123 };
124
125 /// return loaded Buffer or zero if the file loading did not proceed.
126 Buffer * loadIfNeeded(Buffer const & parent, InsetCommandParams const & params);
127
128 } // namespace lyx
129
130 #endif // INSET_INCLUDE_H