diff options
author | Tim Moore <timoore@redhat.com> | 2009-04-15 18:43:23 +0200 |
---|---|---|
committer | Tim Moore <timoore@redhat.com> | 2009-04-15 19:00:00 +0200 |
commit | 2d45e339f3287cf0b4805ea91b3aa9f17b6d4752 (patch) | |
tree | abd4c3faf3c774702b85a0ff6fb50da184fd5023 /CairoWidget.hxx | |
parent | 7a51212ca1895b85f400fafe0e5198525996af1d (diff) | |
download | systemtap-steved-2d45e339f3287cf0b4805ea91b3aa9f17b6d4752.tar.gz systemtap-steved-2d45e339f3287cf0b4805ea91b3aa9f17b6d4752.tar.xz systemtap-steved-2d45e339f3287cf0b4805ea91b3aa9f17b6d4752.zip |
graphing widget and test harness
Diffstat (limited to 'CairoWidget.hxx')
-rw-r--r-- | CairoWidget.hxx | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/CairoWidget.hxx b/CairoWidget.hxx new file mode 100644 index 00000000..077a4c7a --- /dev/null +++ b/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 |