added compass support added ui elements for gps and compass added support for writing sensor data
32 lines
395 B
C++
32 lines
395 B
C++
#ifndef PLOTTI_H
|
|
#define PLOTTI_H
|
|
|
|
#include <QWidget>
|
|
#include "../misc/fixc11.h"
|
|
#include "Plot.h"
|
|
|
|
/** widget to render one plot */
|
|
class PlotWidget : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
/** ctor */
|
|
explicit PlotWidget(QWidget *parent = 0);
|
|
|
|
protected:
|
|
|
|
PlotContainer pc;
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
void paintEvent(QPaintEvent*);
|
|
void resizeEvent(QResizeEvent*);
|
|
|
|
};
|
|
|
|
#endif // PLOTTI_H
|