]> git.lyx.org Git - lyx.git/blob - src/insets/render_preview.h
The speed patch: redraw only rows that have changed
[lyx.git] / src / insets / render_preview.h
1 // -*- C++ -*-
2 /**
3  * \file render_preview.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Angus Leeming
8  *
9  * Full author contact details are available in file CREDITS.
10  *
11  * lyx::graphics::RenderPreview is an abstract base class that can help
12  * insets to generate previews. The daughter class must instantiate two small
13  * methods. The Inset would own an instance of this daughter class.
14  */
15
16 #ifndef RENDER_PREVIEW_H
17 #define RENDER_PREVIEW_H
18
19 #include "render_base.h"
20
21 #include "support/FileMonitor.h"
22
23 #include <boost/signal.hpp>
24 #include <boost/signals/trackable.hpp>
25 #include <boost/signals/connection.hpp>
26
27 class Buffer;
28 class LyXRC_PreviewStatus;
29 class MetricsInfo;
30 class PainterInfo;
31
32 namespace lyx {
33 namespace graphics {
34
35 class PreviewImage;
36 class PreviewLoader;
37
38 } // namespace graphics
39 } // namespace lyx
40
41
42 class RenderPreview : public RenderBase, public boost::signals::trackable {
43 public:
44         /// a wrapper for Previews::status()
45         static LyXRC_PreviewStatus status();
46
47         RenderPreview(InsetBase const *);
48         RenderPreview(RenderPreview const &, InsetBase const *);
49         std::auto_ptr<RenderBase> clone(InsetBase const *) const;
50
51         /// Compute the size of the object, returned in dim
52         void metrics(MetricsInfo &, Dimension & dim) const;
53         ///
54         void draw(PainterInfo & pi, int x, int y) const;
55
56         /** Find the PreviewLoader and add a LaTeX snippet to it.
57          *  Do not start the loading process.
58          */
59         void addPreview(std::string const & latex_snippet, Buffer const &);
60
61         /** Add a LaTeX snippet to the PreviewLoader.
62          *  Do not start the loading process.
63          */
64         void addPreview(std::string const & latex_snippet,
65                         lyx::graphics::PreviewLoader & ploader);
66
67         /// Begin the loading process.
68         void startLoading(Buffer const & buffer) const;
69
70         /** Remove a snippet from the cache of previews.
71          *  Useful if previewing the contents of a file that has changed.
72          */
73         void removePreview(Buffer const &);
74
75         /** \returns a pointer to the PreviewImage associated with this snippet
76          *  of latex.
77          */
78         lyx::graphics::PreviewImage const *
79         getPreviewImage(Buffer const & buffer) const;
80
81         /// equivalent to dynamic_cast
82         virtual RenderPreview * asPreview() { return this; }
83
84 private:
85         /// Not implemented.
86         RenderPreview & operator=(RenderPreview const &);
87
88         /// This method is connected to the PreviewLoader::imageReady signal.
89         void imageReady(lyx::graphics::PreviewImage const &);
90
91         /// The thing that we're trying to generate a preview of.
92         std::string snippet_;
93
94         /** Store the connection to the preview loader so that we connect
95          *  only once.
96          */
97         boost::signals::connection ploader_connection_;
98
99         /// Inform the core that the inset has changed.
100         InsetBase const * parent_;
101 };
102
103
104 class RenderMonitoredPreview : public RenderPreview {
105 public:
106         RenderMonitoredPreview(InsetBase const *);
107         ///
108         void draw(PainterInfo & pi, int x, int y) const;
109         ///
110         void setAbsFile(std::string const & file);
111         ///
112         bool monitoring() const { return monitor_.monitoring(); }
113         void startMonitoring() const { monitor_.start(); }
114         void stopMonitoring() const { monitor_.stop(); }
115
116
117         /// Connect and you'll be informed when the file changes.
118         typedef lyx::support::FileMonitor::slot_type slot_type;
119         boost::signals::connection fileChanged(slot_type const &);
120
121         /// equivalent to dynamic_cast
122         virtual RenderMonitoredPreview * asMonitoredPreview() { return this; }
123
124 private:
125         ///
126         mutable lyx::support::FileMonitor monitor_;
127 };
128
129 #endif // RENDERPREVIEW_H