#ifndef LINECHARTS_H #define LINECHARTS_H #include #include #include #include "LinechartWidget.h" #include "UASInterface.h" class Linecharts : public QStackedWidget { Q_OBJECT public: explicit Linecharts(QWidget *parent = 0); signals: /** @brief This signal is emitted once a logfile has been finished writing */ void logfileWritten(QString fileName); void visibilityChanged(bool visible); public slots: /** @brief Add a new system to the list of plots */ void addSystem(UASInterface* uas); /** @brief Add a new generic message source (not a system) */ void addSource(QObject* obj); protected: QMap plots; QVector genericSources; bool active; /** @brief Start updating widget */ void showEvent(QShowEvent* event); /** @brief Stop updating widget */ void hideEvent(QHideEvent* event); }; #endif // LINECHARTS_H