1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
|
#include <algorithm>
#include <ctime>
#include <math.h>
#include <cairomm/context.h>
#include "GraphWidget.hxx"
#include "CairoWidget.hxx"
namespace systemtap
{
using namespace std;
using namespace std::tr1;
GraphWidget::GraphWidget()
: _trackingDrag(false), _width(600), _height(200)
{
add_events(Gdk::POINTER_MOTION_MASK | Gdk::BUTTON_PRESS_MASK
| Gdk::BUTTON_RELEASE_MASK | Gdk::SCROLL_MASK);
Glib::signal_timeout()
.connect(sigc::mem_fun(*this, &GraphWidget::on_timeout), 1000);
signal_expose_event()
.connect(sigc::mem_fun(*this, &GraphWidget::on_expose_event), false);
signal_button_press_event()
.connect(sigc::mem_fun(*this, &GraphWidget::on_button_press_event),
false);
signal_button_release_event()
.connect(sigc::mem_fun(*this, &GraphWidget::on_button_release_event),
false);
signal_motion_notify_event()
.connect(sigc::mem_fun(*this, &GraphWidget::on_motion_notify_event),
false);
signal_scroll_event()
.connect(sigc::mem_fun(*this, &GraphWidget::on_scroll_event), false);
// Temporary testing of multiple graphs
shared_ptr<Graph> graph(new Graph);
_graphs.push_back(graph);
}
GraphWidget::~GraphWidget()
{
}
void GraphWidget::addGraphData(std::tr1::shared_ptr<GraphDataBase> data)
{
_graphs[0]->addGraphData(data);
}
void GraphWidget::addGraph()
{
shared_ptr<Graph> graph(new Graph);
double x = 0.0;
double y = 0.0;
if (!_graphs.empty())
{
_graphs.back()->getOrigin(x, y);
y += _graphs.back()->_height + 10;
_height = y + graph->_height;
}
graph->setOrigin(x, y);
_graphs.push_back(graph);
queue_resize();
}
bool GraphWidget::on_expose_event(GdkEventExpose* event)
{
// This is where we draw on the window
Glib::RefPtr<Gdk::Window> window = get_window();
if(!window)
return true;
Cairo::RefPtr<Cairo::Context> cr = window->create_cairo_context();
#if 0
if(event && !_autoScaling)
{
// clip to the area indicated by the expose event so that we only
// redraw the portion of the window that needs to be redrawn
cr->rectangle(event->area.x, event->area.y,
event->area.width, event->area.height);
cr->clip();
}
#endif
cr->save();
cr->set_source_rgba(0.0, 0.0, 0.0, 1.0);
cr->paint();
for (GraphList::iterator g = _graphs.begin(); g != _graphs.end(); ++g)
{
double x, y;
(*g)->getOrigin(x, y);
cr->save();
cr->translate(x, y);
(*g)->draw(cr);
cr->restore();
}
return true;
}
bool GraphWidget::on_button_press_event(GdkEventButton* event)
{
for (GraphList::iterator g = _graphs.begin(); g != _graphs.end(); ++g)
{
if (event->x >= (*g)->_graphX
&& event->x < (*g)->_graphX + (*g)->_graphWidth
&& event->y >= (*g)->_graphY
&& event->y < (*g)->_graphY + (*g)->_graphHeight)
{
_activeGraph = *g;
break;
}
}
if (!_activeGraph)
return true;
if (!_activeGraph->_autoScrolling
&& _activeGraph->_playButton->containsPoint(event->x, event->y))
{
_activeGraph->_autoScaling = true;
_activeGraph->_autoScrolling = true;
queue_draw();
}
else
{
_trackingDrag = true;
_activeGraph->_autoScaling = false;
_activeGraph->_autoScrolling = false;
_dragOriginX = event->x;
_dragOriginY = event->y;
_dragOrigLeft = _activeGraph->_left;
_dragOrigRight = _activeGraph->_right;
}
return true;
}
bool GraphWidget::on_button_release_event(GdkEventButton* event)
{
_trackingDrag = false;
return true;
}
bool GraphWidget::on_motion_notify_event(GdkEventMotion* event)
{
Glib::RefPtr<Gdk::Window> win = get_window();
if(!win)
return true;
double x = 0.0;
double y = 0.0;
// XXX Hint
if (event->is_hint)
{
}
else
{
x = event->x;
y = event->y;
}
if (_trackingDrag && _activeGraph)
{
Gtk::Allocation allocation = get_allocation();
const int width = allocation.get_width();
double motion = (x - _dragOriginX) / (double) width;
double increment = motion * (_dragOrigLeft - _dragOrigRight);
_activeGraph->_left = _dragOrigLeft + increment;
_activeGraph->_right = _dragOrigRight + increment;
queue_draw();
}
return true;
}
bool GraphWidget::on_scroll_event(GdkEventScroll* event)
{
for (GraphList::iterator gitr = _graphs.begin();
gitr != _graphs.end();
++gitr)
{
if ((*gitr)->containsPoint(event->x, event->y))
{
if (event->direction == GDK_SCROLL_UP)
(*gitr)->_zoomFactor += .1;
else if (event->direction == GDK_SCROLL_DOWN)
(*gitr)->_zoomFactor -= .1;
queue_draw();
break;
}
}
return true;
}
bool GraphWidget::on_timeout()
{
queue_draw();
return true;
}
void GraphWidget::on_size_request(Gtk::Requisition* req)
{
req->width = _width;
req->height = _height;
}
}
|