QGCActionButton.cc 2.34 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
QGCActionButton::QGCActionButton(QWidget *parent) :
45
    QGCToolWidgetItem("Button", parent),
46 47
    ui(new Ui::QGCActionButton),
    uas(NULL)
48 49
{
    ui->setupUi(this);
50 51

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

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

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

69 70
void QGCActionButton::sendAction()
{
71
    if (QGCToolWidgetItem::uas)
72 73 74 75
    {
        MAV_ACTION action = static_cast<MAV_ACTION>(
                ui->editActionComboBox->currentIndex());

76 77 78 79 80
        QGCToolWidgetItem::uas->setAction(action);
    }
    else
    {
        qDebug() << __FILE__ << __LINE__ << "NO UAS SET, DOING NOTHING";
81 82 83 84 85 86 87 88
    }
}

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

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

void QGCActionButton::endEditMode()
{
    ui->editActionComboBox->hide();
    ui->editActionsRefreshButton->hide();
    ui->editFinishButton->hide();
104 105 106 107 108 109
    ui->editNameLabel->hide();
    ui->editButtonName->hide();

    // Write to settings


110 111
    isInEditMode = false;
}