summaryrefslogtreecommitdiff
path: root/src/libpcp_qwt/src/qwt_sampling_thread.h
blob: 85b876e5ccd7e2c68f7e3701abad12743edbe677 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#ifndef _QWT_SAMPLING_THREAD_H_
#define _QWT_SAMPLING_THREAD_H_

#include "qwt_global.h"
#include <qthread.h>

/*!
  \brief A thread collecting samples at regular intervals.

  Contiounous signals are converted into a discrete signal by
  collecting samples at regular intervals. A discrete signal
  can be displayed by a QwtPlotSeriesItem on a QwtPlot widget.

  QwtSamplingThread starts a thread calling perodically sample(),
  to collect and store ( or emit ) a single sample.

  \sa QwtPlotCurve, QwtPlotSeriesItem
*/
class QWT_EXPORT QwtSamplingThread: public QThread
{
    Q_OBJECT

public:
    virtual ~QwtSamplingThread();

    double interval() const;
    double elapsed() const;

public Q_SLOTS:
    void setInterval( double interval );
    void stop();

protected:
    explicit QwtSamplingThread( QObject *parent = NULL );

    virtual void run();

    /*!
       Collect a sample

       \param elapsed Time since the thread was started in miliseconds
     */
    virtual void sample( double elapsed ) = 0;

private:
    class PrivateData;
    PrivateData *d_data;
};

#endif