00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef EVENT_VIEWER_H
00025 #define EVENT_VIEWER_H
00026
00027 #ifdef HAVE_QWT
00028
00029 #ifdef _MSC_VER
00030 #define QWT_DLL
00031 #endif // _MSC_VER
00032
00033 #include <qwt_plot.h>
00034 #include <qwt_plot_curve.h>
00035 #include <qwt_legend.h>
00036
00037 #include <QTime>
00038
00039 #include "MainWindow.h"
00040
00041 namespace Aseba
00042 {
00045
00046 class EventViewer: public QwtPlot
00047 {
00048 protected:
00049 unsigned eventId;
00050 MainWindow::EventViewers* eventsViewers;
00051
00052 std::vector<VariablesDataVector> values;
00053 std::vector<double> timeStamps;
00054 QTime startingTime;
00055
00056 public:
00057 EventViewer(unsigned eventId, const QString& eventName, unsigned eventVariablesCount, MainWindow::EventViewers* eventsViewers);
00058 virtual ~EventViewer();
00059
00060 void detachFromMain() { eventsViewers=0; }
00061 void addData(const VariablesDataVector& data);
00062 };
00063
00065 };
00066
00067 #endif // HAVE_QWT
00068
00069 #endif // EVENT_VIEWER_H