Skip to content
ParameterInterface.cc 1.84 KiB
Newer Older
pixhawk's avatar
pixhawk committed
#include "ParameterInterface.h"
#include "UASManager.h"
#include "ui_ParameterInterface.h"
lm's avatar
lm committed
#include "QGCSensorSettingsWidget.h"
pixhawk's avatar
pixhawk committed

pixhawk's avatar
pixhawk committed
ParameterInterface::ParameterInterface(QWidget *parent) :
pixhawk's avatar
pixhawk committed
        paramWidgets(new QMap<int, QGCParamWidget*>()),
        curr(-1),
pixhawk's avatar
pixhawk committed
{
    m_ui->setupUi(this);
    // Make sure the combo box is empty
    // because else indices get messed up
    m_ui->vehicleComboBox->clear();
pixhawk's avatar
pixhawk committed
    // Setup UI connections
    connect(m_ui->vehicleComboBox, SIGNAL(activated(int)), this, SLOT(selectUAS(int)));
pixhawk's avatar
pixhawk committed
    // Setup MAV connections
    connect(UASManager::instance(), SIGNAL(UASCreated(UASInterface*)), this, SLOT(addUAS(UASInterface*)));
pixhawk's avatar
pixhawk committed
}

ParameterInterface::~ParameterInterface()
{
    delete m_ui;
}

pixhawk's avatar
pixhawk committed
void ParameterInterface::selectUAS(int index)
{
    // FIXME plus 2 shouldn't be there
    m_ui->stackedWidget->setCurrentIndex(index+2);
    m_ui->sensorSettings->setCurrentIndex(index+2);
pixhawk's avatar
pixhawk committed
    curr = index;
}

pixhawk's avatar
pixhawk committed
/**
 *
 * @param uas System to add to list
 */
void ParameterInterface::addUAS(UASInterface* uas)
{
    m_ui->vehicleComboBox->addItem(uas->getUASName());
pixhawk's avatar
pixhawk committed
    QGCParamWidget* param = new QGCParamWidget(uas, this);
    paramWidgets->insert(uas->getUASID(), param);
    m_ui->stackedWidget->addWidget(param);
lm's avatar
lm committed


    QGCSensorSettingsWidget* sensor = new QGCSensorSettingsWidget(uas, this);
    m_ui->sensorSettings->addWidget(sensor);

    // Set widgets as default
pixhawk's avatar
pixhawk committed
    if (curr == -1)
    {
        m_ui->sensorSettings->setCurrentWidget(sensor);
pixhawk's avatar
pixhawk committed
        m_ui->stackedWidget->setCurrentWidget(param);
        curr = 0;
pixhawk's avatar
pixhawk committed
    }
pixhawk's avatar
pixhawk committed
}

void ParameterInterface::changeEvent(QEvent *e)
{
    switch (e->type()) {
    case QEvent::LanguageChange:
        m_ui->retranslateUi(this);
        break;
    default:
        break;
    }
}