QGCToolBar.h 5.14 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/*=====================================================================

QGroundControl Open Source Ground Control Station

(c) 2009 - 2011 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>

This file is part of the QGROUNDCONTROL project

    QGROUNDCONTROL is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    QGROUNDCONTROL is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.

======================================================================*/

#ifndef QGCTOOLBAR_H
#define QGCTOOLBAR_H

#include <QToolBar>
#include <QAction>
#include <QToolButton>
30
#include <QPushButton>
31
#include <QLabel>
LM's avatar
LM committed
32
#include <QProgressBar>
33
#include <QComboBox>
34
#include <QTimer>
35
#include "UASInterface.h"
lm's avatar
lm committed
36
#include "QGCMAVLinkLogPlayer.h"
37
#include "SerialLink.h"
38 39 40 41 42 43

class QGCToolBar : public QToolBar
{
    Q_OBJECT

public:
lm's avatar
lm committed
44
    explicit QGCToolBar(QWidget* parent = 0);
Lorenz Meier's avatar
Lorenz Meier committed
45
    void setPerspectiveChangeActions(const QList<QAction*> &action);
46
    void setPerspectiveChangeAdvancedActions(const QList<QAction*> &action);
47 48 49 50 51
    ~QGCToolBar();

public slots:
    /** @brief Set the system that is currently displayed by this widget */
    void setActiveUAS(UASInterface* active);
52 53 54 55 56 57
    /** @brief Set the link which is currently handled with connecting / disconnecting */
    void addLink(LinkInterface* link);
    /** @brief Remove link which is currently handled */
    void removeLink(LinkInterface* link);
    /** @brief Update the link state */
    void updateLinkState(bool connected);
58 59 60 61 62 63 64 65
    /** @brief Set the system state */
    void updateState(UASInterface* system, QString name, QString description);
    /** @brief Set the system mode */
    void updateMode(int system, QString name, QString description);
    /** @brief Update the system name */
    void updateName(const QString& name);
    /** @brief Set the MAV system type */
    void setSystemType(UASInterface* uas, unsigned int systemType);
LM's avatar
LM committed
66 67
    /** @brief Received system text message */
    void receiveTextMessage(int uasid, int componentid, int severity, QString text);
LM's avatar
LM committed
68
    /** @brief Update battery charge state */
dongfang's avatar
dongfang committed
69
    void updateBatteryRemaining(UASInterface* uas, double voltage, double current, double percent, int seconds);
70 71 72 73
    /** @brief Update current waypoint */
    void updateCurrentWaypoint(quint16 id);
    /** @brief Update distance to current waypoint */
    void updateWaypointDistance(double distance);
74 75
    /** @brief Update arming state */
    void updateArmingState(bool armed);
lm's avatar
lm committed
76 77
    /** @brief Repaint widgets */
    void updateView();
78 79
    /** @brief Update connection timeout time */
    void heartbeatTimeout(bool timeout, unsigned int ms);
80
    /** @brief Update global position */
81
    void globalPositionChanged(UASInterface* uas, double lat, double lon, double altAMSL, double altWGS84, quint64 usec);
82 83
    /** @brief Create or connect link */
    void connectLink(bool connect);
84 85
    /** @brief Clear status string */
    void clearStatusString();
86 87
    /** @brief Set an activity action as checked in menu */
    void advancedActivityTriggered(QAction* action);
88
    void updateComboBox();
89

90 91 92 93 94 95
    /**
     * @brief User selected baud rate
     * @param index The current index of the combo box
     */
    void baudSelected(int index);

96 97 98 99 100 101
    /**
     * @brief User selected port
     * @param index The current index of the combo box
     */
    void portSelected(int index);

102
protected:
103 104
    void storeSettings();
    void loadSettings();
105
    void createUI();
106
    void resetToolbarUI();
107
    UASInterface* mav;
108
    QLabel* symbolLabel;
LM's avatar
LM committed
109
    QLabel* toolBarNameLabel;
110
    QLabel* toolBarTimeoutLabel;
111
    QAction* toolBarTimeoutAction; ///< Needed to set label (in)visible.
112 113 114 115
    QAction* toolBarMessageAction;
    QAction* toolBarPortAction;
    QAction* toolBarBaudAction;
    QAction* toolBarWpAction;
Lorenz Meier's avatar
Lorenz Meier committed
116 117
    QAction* toolBarBatteryBarAction;
    QAction* toolBarBatteryVoltageAction;
118
    QLabel* toolBarSafetyLabel;
LM's avatar
LM committed
119 120 121 122
    QLabel* toolBarModeLabel;
    QLabel* toolBarStateLabel;
    QLabel* toolBarWpLabel;
    QLabel* toolBarMessageLabel;
123
    QPushButton* connectButton;
LM's avatar
LM committed
124
    QProgressBar* toolBarBatteryBar;
125
    QLabel* toolBarBatteryVoltageLabel;
126

127
    QGCMAVLinkLogPlayer* player;
128
    QComboBox *portComboBox;
129
    QComboBox *baudcomboBox;
130
    QTimer portBoxTimer;
131
    bool userBaudChoice;
132
    bool userPortChoice;
lm's avatar
lm committed
133 134 135 136 137
    bool changed;
    float batteryPercent;
    float batteryVoltage;
    int wpId;
    double wpDistance;
138 139
    float altitudeMSL;
    float altitudeRel;
lm's avatar
lm committed
140 141 142 143
    QString state;
    QString mode;
    QString systemName;
    QString lastSystemMessage;
144
    quint64 lastSystemMessageTimeMs;
lm's avatar
lm committed
145
    QTimer updateViewTimer;
146
    bool systemArmed;
147
    LinkInterface* currentLink;
148
    QAction* firstAction;
149
    QToolButton *advancedButton;
150
    QButtonGroup *group;
151 152 153
};

#endif // QGCTOOLBAR_H