]> git.lyx.org Git - lyx.git/blob - src/insets/render_graphic.h
a5d8e5155a979771b675d70e76dfd7a440d1c58a
[lyx.git] / src / insets / render_graphic.h
1 // -*- C++ -*-
2 /**
3  * \file render_graphic.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
12 #ifndef RENDER_GRAPHIC_H
13 #define RENDER_GRAPHIC_H
14
15 #include "render_base.h"
16
17 #include "graphics/GraphicsLoader.h"
18 #include "graphics/GraphicsParams.h"
19
20
21 class RenderGraphic : public RenderBase
22 {
23 public:
24         RenderGraphic(InsetBase const *);
25         RenderGraphic(RenderGraphic const &, InsetBase const *);
26         std::auto_ptr<RenderBase> clone(InsetBase const *) const;
27
28         /// compute the size of the object returned in dim
29         void metrics(MetricsInfo & mi, Dimension & dim) const;
30         /// draw inset
31         void draw(PainterInfo & pi, int x, int y) const;
32
33         /// Refresh the info about which file to display and how to display it.
34         void update(lyx::graphics::Params const & params);
35
36         /// Is the stored checksum different to that of the graphics loader?
37         bool hasFileChanged() const;
38
39         /// equivalent to dynamic_cast
40         virtual RenderGraphic * asGraphic() { return this; }
41
42 private:
43         /// Not implemented.
44         RenderGraphic & operator=(RenderGraphic const &);
45
46         /// The stored data.
47         lyx::graphics::Loader loader_;
48         lyx::graphics::Params params_;
49
50         /// Cached variable (not copied).
51         mutable unsigned long checksum_;
52 };
53
54
55 #endif // NOT RENDER_GRAPHIC_H