~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to libs/ksysguard/tests/graphicssignalplotterbenchmark.h

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#include <QtTest>
 
3
#include <Qt>
 
4
 
 
5
class KGraphicsSignalPlotter;
 
6
class QGraphicsView;
 
7
class QGraphicsScene;
 
8
class BenchmarkGraphicsSignalPlotter : public QObject
 
9
{
 
10
    Q_OBJECT
 
11
    private slots:
 
12
        void init();
 
13
        void cleanup();
 
14
 
 
15
        void addData();
 
16
        void addDataWhenHidden();
 
17
    private:
 
18
        KGraphicsSignalPlotter *s;
 
19
        QGraphicsView *view;
 
20
        QGraphicsScene *scene;
 
21
 
 
22
};