diff options
author | Tim Moore <timoore@redhat.com> | 2009-07-27 12:46:30 +0200 |
---|---|---|
committer | Tim Moore <timoore@redhat.com> | 2009-07-28 11:21:15 +0200 |
commit | 364ad890e341bb60ae169af69933a382d4bf9f81 (patch) | |
tree | 4b2fb5eb5644bdebc38b935077fa96ace8d831c5 /grapher/grapher.cxx | |
parent | a030ced8c0b8109ba7b23bbbc65deddf88154a2f (diff) | |
download | systemtap-steved-364ad890e341bb60ae169af69933a382d4bf9f81.tar.gz systemtap-steved-364ad890e341bb60ae169af69933a382d4bf9f81.tar.xz systemtap-steved-364ad890e341bb60ae169af69933a382d4bf9f81.zip |
Support for presenting multiple graphs
* grapher/Graph.hxx: New file; class for single graph display.
* grapher/Graph.cxx: New file.
* grapher/GraphData.hxx: Associate title and axis labels with graph
data and not a graph display.
* grapher/GraphWidget.hxx: Move graph-related members to Graph class.
* grapher/GraphWidget.cxx (getExtents, setExtents): Move to Graph
class
(on_expose_event): Move graph rendering to Graph.
(on_button_press_event): Delegate to Graph.
(on_motion_notify_event, on_scroll_event): Modify "active" graph.
* grapher/StapParser.cxx (findTaggedValue): New parsing helper
function.
(io_callback): Support new syntax where properties are attached to
graph data and not the entire graph.
* grapher/grapher.cxx (GrapherWindow): Don't set graph values.
* grapher/Makefile.am: Add Graph.cxx.
* testsuite/systemtap.examples/general/grapher.stp: New property syntax.
Diffstat (limited to 'grapher/grapher.cxx')
-rw-r--r-- | grapher/grapher.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/grapher/grapher.cxx b/grapher/grapher.cxx index 26e5b9b2..a0d35017 100644 --- a/grapher/grapher.cxx +++ b/grapher/grapher.cxx @@ -40,9 +40,6 @@ GrapherWindow::GrapherWindow() { set_title("systemtap grapher"); add(m_Box); - w.setExtents(0.0, 1.0, 5.0, 0.0); - w.setLineWidth(2); - //Create actions for menus and toolbars: |