QGCToolBar.h 3.89 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);
42 43 44 45 46 47 48 49 50 51 52 53 54 55
    void addPerspectiveChangeAction(QAction* action);
    ~QGCToolBar();

public slots:
    /** @brief Set the system that is currently displayed by this widget */
    void setActiveUAS(UASInterface* active);
    /** @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
56 57
    /** @brief Received system text message */
    void receiveTextMessage(int uasid, int componentid, int severity, QString text);
lm's avatar
lm committed
58
    /** @brief Start / stop logging */
59
    void logging(bool checked);
60
    /** @brief Start playing logfile */
61
    void playLogFile(bool checked);
lm's avatar
lm committed
62 63
    /** @brief Set log playing component */
    void setLogPlayer(QGCMAVLinkLogPlayer* player);
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 86 87 88 89

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

#endif // QGCTOOLBAR_H