mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
23 lines
411 B
C
23 lines
411 B
C
![]() |
|
||
|
#include <QtTest>
|
||
|
#include <Qt>
|
||
|
|
||
|
class KGraphicsSignalPlotter;
|
||
|
class QGraphicsView;
|
||
|
class QGraphicsScene;
|
||
|
class BenchmarkGraphicsSignalPlotter : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
private slots:
|
||
|
void init();
|
||
|
void cleanup();
|
||
|
|
||
|
void addData();
|
||
|
void addDataWhenHidden();
|
||
|
private:
|
||
|
KGraphicsSignalPlotter *s;
|
||
|
QGraphicsView *view;
|
||
|
QGraphicsScene *scene;
|
||
|
|
||
|
};
|