]> git.lyx.org Git - lyx.git/blob - src/insets/InsetInclude.h
Cleanup mouse/selection/context-menu interactions.
[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         bool isLabeled() const { return true; }
43
44         /// Override these InsetButton methods if Previewing
45         void metrics(MetricsInfo & mi, Dimension & dim) const;
46         ///
47         void draw(PainterInfo & pi, int x, int y) const;
48         ///
49         DisplayType display() const;
50         ///
51         InsetCode lyxCode() const { return INCLUDE_CODE; }
52         /** Fills \c keys
53          *  \param buffer the Buffer containing this inset.
54          *  \param keys the list of bibkeys in the child buffer.
55          *  \param it not used here
56          */
57         void fillWithBibKeys(BiblioInfo & keys, InsetIterator const & it) const;
58         
59         /** Update the cache with all bibfiles in use of the child buffer
60          *  (including bibfiles of grandchild documents).
61          *  Does nothing if the child document is not loaded to prevent
62          *  automatic loading of all child documents upon loading the master.
63          *  \param buffer the Buffer containing this inset.
64          */
65         void updateBibfilesCache();
66         /** Return the cache with all bibfiles in use of the child buffer
67          *  (including bibfiles of grandchild documents).
68          *  Return an empty vector if the child doc is not loaded.
69          *  \param buffer the Buffer containing this inset.
70          */
71         EmbeddedFileList const &
72                 getBibfilesCache(Buffer const & buffer) const;
73         ///
74         EDITABLE editable() const { return IS_EDITABLE; }
75         ///
76         int latex(odocstream &, OutputParams const &) const;
77         ///
78         int plaintext(odocstream &, OutputParams const &) const;
79         ///
80         int docbook(odocstream &, OutputParams const &) const;
81         ///
82         void validate(LaTeXFeatures &) const;
83         ///
84         void addPreview(graphics::PreviewLoader &) const;
85         ///
86         void addToToc(ParConstIterator const &) const;
87         ///
88         void updateLabels(ParIterator const &);
89         /// child document can be embedded
90         void registerEmbeddedFiles(EmbeddedFileList &) const;
91         ///
92         void updateEmbeddedFile(EmbeddedFile const & file);
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 // INSETINCLUDE_H