Linecharts.cc 3.16 KB
Newer Older
1 2
#include <QShowEvent>

3
#include "Linecharts.h"
lm's avatar
lm committed
4
#include "UASManager.h"
5

6 7
#include "MainWindow.h"

8
Linecharts::Linecharts(QWidget *parent) :
9 10 11
    QStackedWidget(parent),
    plots(),
    active(true)
12
{
13 14 15
    this->setVisible(false);
    // Get current MAV list
    QList<UASInterface*> systems = UASManager::instance()->getUASList();
lm's avatar
lm committed
16

17
    // Add each of them
18
    foreach (UASInterface* sys, systems) {
19 20 21 22 23 24 25 26
        addSystem(sys);
    }
    connect(UASManager::instance(), SIGNAL(UASCreated(UASInterface*)),
            this, SLOT(addSystem(UASInterface*)));
    connect(UASManager::instance(), SIGNAL(activeUASSet(int)),
            this, SLOT(selectSystem(int)));
    connect(this, SIGNAL(logfileWritten(QString)),
            MainWindow::instance(), SLOT(loadDataView(QString)));
27 28
}

29
void Linecharts::showEvent(QShowEvent* event)
30
{
31 32
    // React only to internal (pre-display)
    // events
LM's avatar
LM committed
33 34 35 36 37 38 39 40
    Q_UNUSED(event)
    QWidget* prevWidget = currentWidget();
    if (prevWidget)
    {
        LinechartWidget* chart = dynamic_cast<LinechartWidget*>(prevWidget);
        if (chart) {
            this->active = true;
            chart->setActive(true);
41 42
        }
    }
LM's avatar
LM committed
43 44
    QWidget::showEvent(event);
    emit visibilityChanged(true);
45 46 47 48 49 50
}

void Linecharts::hideEvent(QHideEvent* event)
{
    // React only to internal (pre-display)
    // events
LM's avatar
LM committed
51 52 53 54 55 56 57
    Q_UNUSED(event)
    QWidget* prevWidget = currentWidget();
    if (prevWidget) {
        LinechartWidget* chart = dynamic_cast<LinechartWidget*>(prevWidget);
        if (chart) {
            this->active = false;
            chart->setActive(false);
58 59
        }
    }
LM's avatar
LM committed
60 61
    QWidget::hideEvent(event);
    emit visibilityChanged(false);
62 63 64 65 66
}

void Linecharts::selectSystem(int systemid)
{
    QWidget* prevWidget = currentWidget();
67
    if (prevWidget) {
68
        LinechartWidget* chart = dynamic_cast<LinechartWidget*>(prevWidget);
69
        if (chart) {
70 71 72 73
            chart->setActive(false);
        }
    }
    QWidget* widget = plots.value(systemid, NULL);
74
    if (widget) {
75 76
        setCurrentWidget(widget);
        LinechartWidget* chart = dynamic_cast<LinechartWidget*>(widget);
77
        if (chart) {
78 79 80 81 82 83 84
            chart->setActive(true);
        }
    }
}

void Linecharts::addSystem(UASInterface* uas)
{
85
    if (!plots.contains(uas->getUASID())) {
86 87 88
        LinechartWidget* widget = new LinechartWidget(uas->getUASID(), this);
        addWidget(widget);
        plots.insert(uas->getUASID(), widget);
89 90 91 92 93
        // Values without unit
        //connect(uas, SIGNAL(valueChanged(int,QString,double,quint64)), widget, SLOT(appendData(int,QString,double,quint64)));
        // Values with unit as double
        connect(uas, SIGNAL(valueChanged(int,QString,QString,double,quint64)), widget, SLOT(appendData(int,QString,QString,double,quint64)));
        // Values with unit as integer
94
        connect(uas, SIGNAL(valueChanged(int,QString,QString,int,quint64)), widget, SLOT(appendData(int,QString,QString,int,quint64)));
95

96
        connect(widget, SIGNAL(logfileWritten(QString)), this, SIGNAL(logfileWritten(QString)));
97
        // Set system active if this is the only system
98 99
        if (active) {
            if (plots.size() == 1) {
100 101 102 103 104
                selectSystem(uas->getUASID());
            }
        }
    }
}