summaryrefslogtreecommitdiffstats
path: root/grapher/CairoWidget.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'grapher/CairoWidget.cxx')
-rw-r--r--grapher/CairoWidget.cxx162
1 files changed, 81 insertions, 81 deletions
diff --git a/grapher/CairoWidget.cxx b/grapher/CairoWidget.cxx
index 26c2d029..81a6d3c7 100644
--- a/grapher/CairoWidget.cxx
+++ b/grapher/CairoWidget.cxx
@@ -15,89 +15,89 @@
namespace systemtap
{
- using namespace std;
- using namespace boost;
+using namespace std;
+using namespace boost;
- void CairoPlayButton::draw(Cairo::RefPtr<Cairo::Context> cr)
- {
- if (!_visible)
- return;
- cr->save();
- cr->set_line_width(1.0);
- // square with rounded corners
- cr->move_to(_x0, _y0 + _radius);
- cr->arc(_x0 + _radius, _y0 + _radius, _radius, M_PI, -M_PI_2);
- cr->line_to(_x0 + _size - _radius, _y0);
- cr->arc(_x0 + _size - _radius, _y0 + _radius, _radius, -M_PI_2, 0.0);
- cr->line_to(_x0 + _size, _y0 + _size - _radius);
- cr->arc(_x0 + _size - _radius, _y0 + _size - _radius, _radius, 0.0, M_PI_2);
- cr->line_to(_x0 + _radius, _y0 + _size);
- cr->arc(_x0 + _radius, _y0 + _size - _radius, _radius, M_PI_2, M_PI);
- cr->close_path();
- //cr->rectangle(_x0, _y0, 50.0, 50.0);
- cr->set_source_rgba(1.0, 1.0, 1.0, .8);
- cr->stroke();
- // play equalateral triangle
- cr->move_to(_x0 + .25 * _size, _y0 + (.5 - 1.0 / (sqrt(3.0) * 2.0)) * _size);
- cr->line_to(_x0 + .75 * _size, _y0 + .5 * _size);
- cr->line_to(_x0 + .25 * _size, _y0 + (.5 + 1.0 / (sqrt(3.0) * 2.0)) * _size);
- cr->close_path();
- cr->fill();
- cr->restore();
- }
+void CairoPlayButton::draw(Cairo::RefPtr<Cairo::Context> cr)
+{
+ if (!_visible)
+ return;
+ cr->save();
+ cr->set_line_width(1.0);
+ // square with rounded corners
+ cr->move_to(_x0, _y0 + _radius);
+ cr->arc(_x0 + _radius, _y0 + _radius, _radius, M_PI, -M_PI_2);
+ cr->line_to(_x0 + _size - _radius, _y0);
+ cr->arc(_x0 + _size - _radius, _y0 + _radius, _radius, -M_PI_2, 0.0);
+ cr->line_to(_x0 + _size, _y0 + _size - _radius);
+ cr->arc(_x0 + _size - _radius, _y0 + _size - _radius, _radius, 0.0, M_PI_2);
+ cr->line_to(_x0 + _radius, _y0 + _size);
+ cr->arc(_x0 + _radius, _y0 + _size - _radius, _radius, M_PI_2, M_PI);
+ cr->close_path();
+ //cr->rectangle(_x0, _y0, 50.0, 50.0);
+ cr->set_source_rgba(1.0, 1.0, 1.0, .8);
+ cr->stroke();
+ // play equalateral triangle
+ cr->move_to(_x0 + .25 * _size, _y0 + (.5 - 1.0 / (sqrt(3.0) * 2.0)) * _size);
+ cr->line_to(_x0 + .75 * _size, _y0 + .5 * _size);
+ cr->line_to(_x0 + .25 * _size, _y0 + (.5 + 1.0 / (sqrt(3.0) * 2.0)) * _size);
+ cr->close_path();
+ cr->fill();
+ cr->restore();
+}
- bool CairoPlayButton::containsPoint(double x, double y)
- {
- if (x >= _x0 && (x < (_x0 + 50.0)) && (y >= _y0) && (y < (_y0 + 50)))
- return true;
- else
+bool CairoPlayButton::containsPoint(double x, double y)
+{
+ if (x >= _x0 && (x < (_x0 + 50.0)) && (y >= _y0) && (y < (_y0 + 50)))
+ return true;
+ else
return false;
- }
+}
- void CairoTextBox::draw(Cairo::RefPtr<Cairo::Context> cr)
- {
- if (!_visible)
- return;
- cr->save();
- cr->select_font_face("Sans", Cairo::FONT_SLANT_NORMAL,
- Cairo::FONT_WEIGHT_BOLD);
- cr->set_font_size(10.0);
- Cairo::FontExtents fontExtent;
- cr->get_font_extents(fontExtent);
- // Some naughty fonts have a height less than ascent + descent
- double fontHeight = max(fontExtent.ascent + fontExtent.descent + 1.0,
- fontExtent.height);
- vector<string> lines;
- split(lines, contents, is_any_of("\n"));
- vector<Cairo::TextExtents> extents;
- double width = 0.0, height = 0.0;
- for (vector<string>::iterator itr = lines.begin(), end = lines.end();
- itr != end;
- ++itr)
- {
- Cairo::TextExtents extent;
- cr->get_text_extents(*itr, extent);
- extents.push_back(extent);
- width = max(width, extent.width);
- height += fontHeight;
- }
- cr->move_to(_x0 - 2, _y0 - 2);
- cr->line_to(_x0 + width + 2, _y0 - 2);
- cr->line_to(_x0 + width + 2, _y0 + height + 2);
- cr->line_to(_x0 - 2, _y0 + height + 2);
- cr->close_path();
- cr->set_source_rgba(1.0, 1.0, 1.0, .8);
- cr->fill();
- cr->set_source_rgba(0.0, 0.0, 0.0, 1.0);
- double texty = _y0;
- for (vector<string>::iterator itr = lines.begin(), end = lines.end();
- itr != end;
- ++itr)
- {
- cr->move_to(_x0, texty + fontExtent.ascent);
- cr->show_text(*itr);
- texty += fontHeight;
- }
- cr->restore();
- }
+void CairoTextBox::draw(Cairo::RefPtr<Cairo::Context> cr)
+{
+ if (!_visible)
+ return;
+ cr->save();
+ cr->select_font_face("Sans", Cairo::FONT_SLANT_NORMAL,
+ Cairo::FONT_WEIGHT_BOLD);
+ cr->set_font_size(10.0);
+ Cairo::FontExtents fontExtent;
+ cr->get_font_extents(fontExtent);
+ // Some naughty fonts have a height less than ascent + descent
+ double fontHeight = max(fontExtent.ascent + fontExtent.descent + 1.0,
+ fontExtent.height);
+ vector<string> lines;
+ split(lines, contents, is_any_of("\n"));
+ vector<Cairo::TextExtents> extents;
+ double width = 0.0, height = 0.0;
+ for (vector<string>::iterator itr = lines.begin(), end = lines.end();
+ itr != end;
+ ++itr)
+ {
+ Cairo::TextExtents extent;
+ cr->get_text_extents(*itr, extent);
+ extents.push_back(extent);
+ width = max(width, extent.width);
+ height += fontHeight;
+ }
+ cr->move_to(_x0 - 2, _y0 - 2);
+ cr->line_to(_x0 + width + 2, _y0 - 2);
+ cr->line_to(_x0 + width + 2, _y0 + height + 2);
+ cr->line_to(_x0 - 2, _y0 + height + 2);
+ cr->close_path();
+ cr->set_source_rgba(1.0, 1.0, 1.0, .8);
+ cr->fill();
+ cr->set_source_rgba(0.0, 0.0, 0.0, 1.0);
+ double texty = _y0;
+ for (vector<string>::iterator itr = lines.begin(), end = lines.end();
+ itr != end;
+ ++itr)
+ {
+ cr->move_to(_x0, texty + fontExtent.ascent);
+ cr->show_text(*itr);
+ texty += fontHeight;
+ }
+ cr->restore();
+}
}