QGCToolBar.h 3.95 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 "UASInterface.h"
lm's avatar
lm committed
34
#include "QGCMAVLinkLogPlayer.h"
35 36 37 38 39 40

class QGCToolBar : public QToolBar
{
    Q_OBJECT

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

public slots:
    /** @brief Set the system that is currently displayed by this widget */
    void setActiveUAS(UASInterface* active);
48 49 50 51 52 53
    /** @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);
54 55 56 57 58 59 60 61
    /** @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
62 63
    /** @brief Received system text message */
    void receiveTextMessage(int uasid, int componentid, int severity, QString text);
LM's avatar
LM committed
64 65
    /** @brief Update battery charge state */
    void updateBatteryRemaining(UASInterface* uas, double voltage, double percent, int seconds);
66 67 68 69
    /** @brief Update current waypoint */
    void updateCurrentWaypoint(quint16 id);
    /** @brief Update distance to current waypoint */
    void updateWaypointDistance(double distance);
70 71
    /** @brief Update arming state */
    void updateArmingState(bool armed);
lm's avatar
lm committed
72 73
    /** @brief Repaint widgets */
    void updateView();
74 75
    /** @brief Update connection timeout time */
    void heartbeatTimeout(bool timeout, unsigned int ms);
76 77
    /** @brief Create or connect link */
    void connectLink(bool connect);
78 79
    /** @brief Clear status string */
    void clearStatusString();
80 81 82

protected:
    void createCustomWidgets();
83 84
    void storeSettings();
    void loadSettings();
85
    void createUI();
86 87 88

    UASInterface* mav;
    QToolButton* symbolButton;
LM's avatar
LM committed
89
    QLabel* toolBarNameLabel;
90
    QLabel* toolBarTimeoutLabel;
91
    QLabel* toolBarSafetyLabel;
LM's avatar
LM committed
92 93 94 95 96
    QLabel* toolBarModeLabel;
    QLabel* toolBarStateLabel;
    QLabel* toolBarWpLabel;
    QLabel* toolBarDistLabel;
    QLabel* toolBarMessageLabel;
97
    QPushButton* connectButton;
LM's avatar
LM committed
98
    QProgressBar* toolBarBatteryBar;
99
    QLabel* toolBarBatteryVoltageLabel;
100
    QGCMAVLinkLogPlayer* player;
lm's avatar
lm committed
101 102 103 104 105 106 107 108 109
    bool changed;
    float batteryPercent;
    float batteryVoltage;
    int wpId;
    double wpDistance;
    QString state;
    QString mode;
    QString systemName;
    QString lastSystemMessage;
110
    quint64 lastSystemMessageTimeMs;
lm's avatar
lm committed
111
    QTimer updateViewTimer;
112
    bool systemArmed;
113
    LinkInterface* currentLink;
114
    QAction* firstAction;
115 116 117
};

#endif // QGCTOOLBAR_H