Code Search for Developers
 
 
  

randomplot.h from marsyas at Krugle


Show randomplot.h syntax highlighted

#ifndef _RANDOMPLOT_H_
#define _RANDOMPLOT_H_ 1

#include "incrementalplot.h"

class QTimer;

class RandomPlot: public IncrementalPlot
{
    Q_OBJECT

public:
    RandomPlot(QWidget *parent);

    virtual QSize sizeHint() const;

signals:
    void running(bool);

public slots:
    void clear();
    void stop();
    void append(int timeout, int count);

private slots:
    void appendPoint();

private:
    void initCurve();

    QTimer *d_timer;
    int d_timerCount;
};

#endif // _RANDOMPLOT_H_




See more files for this project here

marsyas

Marsyas (Music Analysis, Retrieval and Synthesis for Audio Signals) is a framework for developing systems for audio processing. It provides an general architecture for connecting audio, soundfiles, signal processing blocks and machine learning.

Project homepage: http://sourceforge.net/projects/marsyas
Programming language(s): C++
License: other

  debug/
  README
  clear.xpm
  incrementalplot.cpp
  incrementalplot.h
  mainwindow.cpp
  mainwindow.h
  randomplot.cpp
  randomplot.h
  realtime.cpp
  realtime_plot.pro
  scrollbar.cpp
  scrollbar.h
  scrollzoomer.cpp
  scrollzoomer.h
  start.xpm