]> git.lyx.org Git - lyx.git/blob - src/insets/render_base.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / render_base.h
1 // -*- C++ -*-
2 /**
3  * \file render_base.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_BASE_H
13 #define RENDER_BASE_H
14
15 #include "dimension.h"
16
17 #include <memory>
18
19
20 namespace lyx {
21
22 class InsetBase;
23 class MetricsInfo;
24 class PainterInfo;
25
26 class RenderButton;
27 class RenderGraphic;
28 class RenderPreview;
29 class RenderMonitoredPreview;
30
31 class RenderBase {
32 public:
33         virtual ~RenderBase() {}
34
35         virtual std::auto_ptr<RenderBase> clone(InsetBase const *) const = 0;
36
37         /// compute the size of the object returned in dim.
38         /// \retval true if the metrics has changed.
39         virtual bool metrics(MetricsInfo & mi, Dimension & dim) const = 0;
40         /// draw inset and update (xo, yo)-cache
41         virtual void draw(PainterInfo & pi, int x, int y) const = 0;
42         /// render state, exact meaning of state is render-specific
43         void setRenderState(int state) { state_ = state; }
44         /// get render state
45         int renderState() const { return state_; } 
46
47         /// equivalent to dynamic_cast
48         virtual RenderButton * asButton() { return 0; }
49         virtual RenderGraphic * asGraphic() { return 0; }
50         virtual RenderPreview * asPreview() { return 0; }
51         virtual RenderMonitoredPreview * asMonitoredPreview() { return 0; }
52
53 protected:
54         RenderBase() {}
55         RenderBase(RenderBase const &) {}
56         RenderBase & operator=(RenderBase const &) { return *this; }
57
58         /// render state. currently, render_button uses this to store mouse_hover_
59         int state_;
60         /// Cached
61         mutable Dimension dim_;
62 };
63
64
65 } // namespace lyx
66
67 #endif // NOT RENDER_BASE_H