Linecharts.h 626 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
#ifndef LINECHARTS_H
#define LINECHARTS_H

#include <QStackedWidget>
#include <QMap>

#include "LinechartWidget.h"
#include "UASInterface.h"

class Linecharts : public QStackedWidget
{
Q_OBJECT
public:
    explicit Linecharts(QWidget *parent = 0);

signals:

public slots:
    /** @brief Set all plots active/inactive */
    void setActive(bool active);
    /** @brief Select plot for one system */
    void selectSystem(int systemid);
    /** @brief Add a new system to the list of plots */
    void addSystem(UASInterface* uas);

protected:
    QMap<int, LinechartWidget*> plots;
    bool active;
};

#endif // LINECHARTS_H