/*===================================================================== QGroundControl Open Source Ground Control Station (c) 2009, 2015 QGROUNDCONTROL PROJECT 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 . ======================================================================*/ /** * @file * @brief QGC Main Tool Bar * @author Gus Grubba */ #ifndef MainToolBarController_H #define MainToolBarController_H #include #include "Vehicle.h" #include "UASMessageView.h" #define TOOL_BAR_SETTINGS_GROUP "TOOLBAR_SETTINGS_GROUP" #define TOOL_BAR_SHOW_BATTERY "ShowBattery" #define TOOL_BAR_SHOW_GPS "ShowGPS" #define TOOL_BAR_SHOW_MAV "ShowMav" #define TOOL_BAR_SHOW_MESSAGES "ShowMessages" #define TOOL_BAR_SHOW_RSSI "ShowRSSI" class MainToolBarController : public QObject { Q_OBJECT public: MainToolBarController(QObject* parent = NULL); ~MainToolBarController(); Q_INVOKABLE void onSetupView(); Q_INVOKABLE void onPlanView(); Q_INVOKABLE void onFlyView(); Q_INVOKABLE void onConnect(QString conf); Q_INVOKABLE void onDisconnect(QString conf); Q_INVOKABLE void onToolBarMessageClosed(void); Q_INVOKABLE void showSettings(void); Q_PROPERTY(double height MEMBER _toolbarHeight NOTIFY heightChanged) Q_PROPERTY(QStringList configList MEMBER _linkConfigurations NOTIFY configListChanged) Q_PROPERTY(int connectionCount READ connectionCount NOTIFY connectionCountChanged) Q_PROPERTY(QStringList connectedList MEMBER _connectedList NOTIFY connectedListChanged) Q_PROPERTY(float progressBarValue MEMBER _progressBarValue NOTIFY progressBarValueChanged) Q_PROPERTY(int remoteRSSI READ remoteRSSI NOTIFY remoteRSSIChanged) Q_PROPERTY(int telemetryRRSSI READ telemetryRRSSI NOTIFY telemetryRRSSIChanged) Q_PROPERTY(int telemetryLRSSI READ telemetryLRSSI NOTIFY telemetryLRSSIChanged) void viewStateChanged (const QString& key, bool value); int remoteRSSI () { return _remoteRSSI; } int telemetryRRSSI () { return _telemetryRRSSI; } int telemetryLRSSI () { return _telemetryLRSSI; } int connectionCount () { return _connectionCount; } void showToolBarMessage(const QString& message); signals: void connectionCountChanged (int count); void configListChanged (); void connectedListChanged (QStringList connectedList); void progressBarValueChanged (float value); void remoteRSSIChanged (int value); void telemetryRRSSIChanged (int value); void telemetryLRSSIChanged (int value); void heightChanged (double height); /// Shows a non-modal message below the toolbar void showMessage(const QString& message); private slots: void _activeVehicleChanged (Vehicle* vehicle); void _updateConfigurations (); void _linkConnected (LinkInterface* link); void _linkDisconnected (LinkInterface* link); void _setProgressBarValue (float value); void _remoteControlRSSIChanged (uint8_t rssi); void _telemetryChanged (LinkInterface* link, unsigned rxerrors, unsigned fixed, unsigned rssi, unsigned remrssi, unsigned txbuf, unsigned noise, unsigned remnoise); void _delayedShowToolBarMessage (void); private: void _updateConnection (LinkInterface *disconnectedLink = NULL); private: Vehicle* _vehicle; UASInterface* _mav; QStringList _linkConfigurations; int _connectionCount; QStringList _connectedList; float _progressBarValue; int _remoteRSSI; double _remoteRSSIstore; int _telemetryRRSSI; int _telemetryLRSSI; double _toolbarHeight; bool _toolbarMessageVisible; QStringList _toolbarMessageQueue; QMutex _toolbarMessageQueueMutex; }; #endif // MainToolBarController_H