mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-04-13 12:42:20 +00:00
Upgrade to QWT 6.0.1, but still uses a locally patched copy since support for 8 axes has not been included, despite it being a relatively simple patch. Fixes #634. Fixes #567.
36 lines
924 B
C++
36 lines
924 B
C++
#include <qapplication.h>
|
|
#include "mainwindow.h"
|
|
#include "samplingthread.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
MainWindow window;
|
|
window.resize(800,400);
|
|
|
|
SamplingThread samplingThread;
|
|
samplingThread.setFrequency(window.frequency());
|
|
samplingThread.setAmplitude(window.amplitude());
|
|
samplingThread.setInterval(window.signalInterval());
|
|
|
|
window.connect(&window, SIGNAL(frequencyChanged(double)),
|
|
&samplingThread, SLOT(setFrequency(double)));
|
|
window.connect(&window, SIGNAL(amplitudeChanged(double)),
|
|
&samplingThread, SLOT(setAmplitude(double)));
|
|
window.connect(&window, SIGNAL(signalIntervalChanged(double)),
|
|
&samplingThread, SLOT(setInterval(double)));
|
|
|
|
window.show();
|
|
|
|
samplingThread.start();
|
|
window.start();
|
|
|
|
bool ok = app.exec();
|
|
|
|
samplingThread.stop();
|
|
samplingThread.wait(1000);
|
|
|
|
return ok;
|
|
}
|