QGCActionButton.cc 2.25 KB
Newer Older
1 2 3
#include "QGCActionButton.h"
#include "ui_QGCActionButton.h"

4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
#include "MAVLinkProtocol.h"
#include "UASManager.h"

const char* kActionLabels[MAV_ACTION_NB] =
{"HOLD",
 "START MOTORS",
 "LAUNCH",
 "RETURN",
 "EMERGENCY LAND",
 "EMERGENCY KILL",
 "CONFIRM KILL",
 "CONTINUE",
 "STOP MOTORS",
 "HALT",
 "SHUTDOWN",
 "REBOOT",
 "SET MANUAL",
 "SET AUTO",
 "READ STORAGE",
 "WRITE STORAGE",
 "CALIBRATE RC",
 "CALIBRATE GYRO",
 "CALIBRATE MAG",
27
 "CALIBRATE ACC",
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
 "CALIBRATE PRESSURE",
 "START REC",
 "PAUSE REC",
 "STOP REC",
 "TAKEOFF",
 "NAVIGATE",
 "LAND",
 "LOITER",
 "SET ORIGIN",
 "RELAY ON",
 "RELAY OFF",
 "GET IMAGE",
 "START VIDEO",
 "STOP VIDEO",
 "RESET MAP"};

44 45
QGCActionButton::QGCActionButton(QWidget *parent) :
    QGCToolWidgetItem(parent),
46 47
    ui(new Ui::QGCActionButton),
    uas(NULL)
48 49
{
    ui->setupUi(this);
50 51 52 53 54

    connect(UASManager::instance(), SIGNAL(activeUASSet(UASInterface*)),
            this, SLOT(setActiveUAS(UASInterface*)));

    connect(ui->actionButton, SIGNAL(clicked()), this, SLOT(sendAction()));
55
    connect(ui->editFinishButton, SIGNAL(clicked()), this, SLOT(endEditMode()));
56 57
    connect(ui->editButtonName, SIGNAL(textChanged(QString)), this, SLOT(setActionButtonName(QString)));
    connect(ui->editActionComboBox, SIGNAL(currentIndexChanged(QString)), ui->nameLabel, SLOT(setText(QString)));
58
    endEditMode();
59 60 61 62 63 64

    // add action labels to combobox
    for (int i = 0; i < MAV_ACTION_NB; i++)
    {
        ui->editActionComboBox->addItem(kActionLabels[i]);
    }
65 66 67 68 69 70 71
}

QGCActionButton::~QGCActionButton()
{
    delete ui;
}

72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
void QGCActionButton::sendAction()
{
    if (uas)
    {
        MAV_ACTION action = static_cast<MAV_ACTION>(
                ui->editActionComboBox->currentIndex());

        uas->setAction(action);
    }
}

void QGCActionButton::setActionButtonName(QString text)
{
    ui->actionButton->setText(text);
}

88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
void QGCActionButton::startEditMode()
{
    ui->editActionComboBox->show();
    ui->editActionsRefreshButton->show();
    ui->editFinishButton->show();
    isInEditMode = true;
}

void QGCActionButton::endEditMode()
{
    ui->editActionComboBox->hide();
    ui->editActionsRefreshButton->hide();
    ui->editFinishButton->hide();
    isInEditMode = false;
}
103 104 105 106 107

void QGCActionButton::setActiveUAS(UASInterface *uas)
{
    this->uas = uas;
}