diff options
author | Tim Moore <timoore@redhat.com> | 2009-04-20 10:06:50 +0200 |
---|---|---|
committer | Tim Moore <timoore@redhat.com> | 2009-04-20 10:06:50 +0200 |
commit | c6cc0049534b543878844c728dbdd3a06cbf7969 (patch) | |
tree | 75df1566da2f5f780249e1e8c3a25b41fc85610b /grapher/CairoWidget.hxx | |
parent | b185f07818262bad07e2904a696f2dfcd22fc1fe (diff) | |
parent | 1087b83f9b60e85d3d41cebd797f2eb4cc495bc6 (diff) | |
download | systemtap-steved-c6cc0049534b543878844c728dbdd3a06cbf7969.tar.gz systemtap-steved-c6cc0049534b543878844c728dbdd3a06cbf7969.tar.xz systemtap-steved-c6cc0049534b543878844c728dbdd3a06cbf7969.zip |
Merge branch 'timoore/grapher'
Diffstat (limited to 'grapher/CairoWidget.hxx')
-rw-r--r-- | grapher/CairoWidget.hxx | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/grapher/CairoWidget.hxx b/grapher/CairoWidget.hxx new file mode 100644 index 00000000..077a4c7a --- /dev/null +++ b/grapher/CairoWidget.hxx @@ -0,0 +1,42 @@ +#ifndef SYSTEMTAP_CAIROWIDGET_H +#define SYSTEMTAP_CAIROWIDGET_H 1 + +#include <cairomm/context.h> +namespace systemtap +{ + class CairoWidget + { + public: + CairoWidget(bool visible = false) + : _visible(visible), _size(50.0), _radius(5) + {} + bool isVisible() const { return _visible; } + void setVisible(bool visible) { _visible = visible; } + void getOrigin(double &x, double &y) const + { + x = _x0; + y = _y0; + } + void setOrigin(double x, double y) + { + _x0 = x; + _y0 = y; + } + virtual void draw(Cairo::RefPtr<Cairo::Context> cr) = 0; + virtual bool containsPoint(double x, double y) { return false; } + protected: + bool _visible; + double _x0; + double _y0; + double _size; + double _radius; + }; + + class CairoPlayButton : public CairoWidget + { + public: + virtual void draw(Cairo::RefPtr<Cairo::Context> cr); + virtual bool containsPoint(double x, double y); + }; +} +#endif |