Changes committed to git://oss.sgi.com/pcp/pcp-gui.git dev
src/chart/chart.cpp | 910 ++++++++++-----------------------------------
src/chart/chart.h | 137 +++---
src/chart/gadget.h | 5
src/chart/groupcontrol.cpp | 102 +++--
src/chart/sampling.cpp | 535 +++++++++++++++++++++++++-
src/chart/sampling.h | 47 ++
src/chart/tracing.cpp | 188 +++++++--
src/chart/tracing.h | 65 ++-
8 files changed, 1129 insertions(+), 860 deletions(-)
commit 5b9d176e3cf3b56bba1efb002609e269fa399adb
Merge: 00a4d17 ea9a95c
Author: Nathan Scott <nathans@xxxxxxxxxx>
Date: Wed Oct 10 09:44:02 2012 +1100
Merge branch 'dev' of git://oss.sgi.com/markgw/pcp/pcp-gui into dev
commit 00a4d17a3ab4d75c750562968e5757ea840d0fb2
Author: Nathan Scott <nathans@xxxxxxxxxx>
Date: Wed Oct 10 09:43:51 2012 +1100
Refactor Chart class, splitting into Chart and ChartEngine
This is the second part of a large refactor to remove all
logic specific to either Sampling or Tracing into their
respective source files, such that the "core" Chart class
does not have to have a boolean flag saying which mode it
is currently operating under.
Previous large refactor in this area split out ChartItem
into separate tracing/sampling. This now completes the
transition in the main Chart class (which covers all of
the ChartItems).
|