4 #include <qwt/qwt_thermo.h>
5 #include <qwt/qwt_knob.h>
6 #include <qwt/qwt_plot.h>
7 #include <qwt/qwt_plot_curve.h>
8 #include <qwt/qwt_dial.h>
9 #include <qwt/qwt_dial_needle.h>
10 #include <qwt/qwt_round_scale_draw.h>
11 #include <qwt/qwt_text_label.h>
16 #include "audioStreamer.h"
29 void timerEvent( QTimerEvent * );
31 void setGain(
double gain);
42 QwtTextLabel *currentNoteText;
43 QPainter *dialNoteText;
45 QwtDialSimpleNeedle *needle;
46 QwtRoundScaleDraw *roundScale;
52 QVBoxLayout *dialLayout;
54 static const int plotDataSize = 512;
55 static const int fftPlotDataSize = plotDataSize/2 + 1;
57 double xData[plotDataSize];
58 double yData[plotDataSize];
60 double xData2[plotDataSize];
61 double yData2[plotDataSize];
Definition: audioStreamer.h:8