mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-25 11:22:52 +00:00
22 lines
411 B
C++
22 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;
|
|
|
|
};
|