You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
494 B
18 lines
494 B
|
3 years ago
|
//-----------------------------------------------------------------
|
||
|
|
// This class shows how to extend QwtPlotItems. It displays a
|
||
|
|
// pie chart of user/total/idle cpu usage in percent.
|
||
|
|
//-----------------------------------------------------------------
|
||
|
|
|
||
|
|
#include <qwt_plot_item.h>
|
||
|
|
|
||
|
|
class CpuPieMarker: public QwtPlotItem
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
CpuPieMarker();
|
||
|
|
|
||
|
|
virtual int rtti() const;
|
||
|
|
|
||
|
|
virtual void draw( QPainter *,
|
||
|
|
const QwtScaleMap &, const QwtScaleMap &, const QRectF & ) const;
|
||
|
|
};
|