QGCToolBar.h 4.19 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
    void setPerspectiveChangeAdvancedActions(const QList<QAction*> &action);
44 45 46 47 48
    ~QGCToolBar();

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

protected:
    void createCustomWidgets();
86 87
    void storeSettings();
    void loadSettings();
88
    void createUI();
89 90 91

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

#endif // QGCTOOLBAR_H