MainWindow.h 10.2 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 30 31 32
/*=====================================================================

QGroundControl Open Source Ground Control Station

(c) 2009, 2010 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/>.

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

/**
 * @file
 *   @brief Definition of class MainWindow
 *   @author Lorenz Meier <mavteam@student.ethz.ch>
 *
 */

#ifndef _MAINWINDOW_H_
#define _MAINWINDOW_H_
dogmaphobic's avatar
dogmaphobic committed
33

34
#include <QMainWindow>
35 36 37
#include <QStatusBar>
#include <QStackedWidget>
#include <QSettings>
38
#include <QList>
39 40 41 42 43 44

#include "ui_MainWindow.h"
#include "LinkManager.h"
#include "LinkInterface.h"
#include "UASInterface.h"
#include "CameraView.h"
dogmaphobic's avatar
dogmaphobic committed
45
#include "MainToolBar.h"
46
#include "LogCompressor.h"
47
#include "FlightDisplayView.h"
48 49 50
#include "QGCMAVLinkInspector.h"
#include "QGCMAVLinkLogPlayer.h"
#include "MAVLinkDecoder.h"
51
#include "Vehicle.h"
52 53 54 55 56 57
#include "QGCDockWidget.h"

#if (defined QGC_MOUSE_ENABLED_WIN) | (defined QGC_MOUSE_ENABLED_LINUX)
    #include "Mouse6dofInput.h"
#endif // QGC_MOUSE_ENABLED_WIN

58 59

class QSplashScreen;
60
class QGCStatusBar;
61 62
class Linecharts;
class QGCDataPlot2D;
63 64 65 66 67 68 69

/**
 * @brief Main Application Window
 *
 **/
class MainWindow : public QMainWindow
{
dogmaphobic's avatar
dogmaphobic committed
70
    friend class MainToolBar;
71 72 73
    Q_OBJECT

public:
Don Gagne's avatar
Don Gagne committed
74 75 76
    /// @brief Returns the MainWindow singleton. Will not create the MainWindow if it has not already
    ///         been created.
    static MainWindow* instance(void);
77

78 79
    /// @brief Deletes the MainWindow singleton
    void deleteInstance(void);
80

Don Gagne's avatar
Don Gagne committed
81
    /// @brief Creates the MainWindow singleton. Should only be called once by QGCApplication.
82
    static MainWindow* _create(QSplashScreen* splashScreen);
83

Don Gagne's avatar
Don Gagne committed
84 85
    /// @brief Called to indicate that splash screen is no longer being displayed.
    void splashScreenFinished(void) { _splashScreen = NULL; }
86

87 88
    ~MainWindow();

89

90
    /** @brief Get auto link reconnect setting */
91
    bool autoReconnectEnabled() const
92
    {
dogmaphobic's avatar
dogmaphobic committed
93
        return _autoReconnect;
94 95 96
    }

    /** @brief Get low power mode setting */
97
    bool lowPowerModeEnabled() const
98
    {
dogmaphobic's avatar
dogmaphobic committed
99
        return _lowPowerMode;
100 101
    }

102
    void hideSplashScreen(void);
103

104 105 106 107 108
    /// @brief Saves the last used connection
    void saveLastUsedConnection(const QString connection);

    /// @brief Restore (and connects) the last used connection (if any)
    void restoreLastUsedConnection();
109
    
110
    /// @brief Gets a pointer to the Main Tool Bar
111
    MainToolBar* getMainToolBar(void) { return _mainToolBar; }
dogmaphobic's avatar
dogmaphobic committed
112 113

    /// @brief Gets a pointer to the Main Flight Display
114
    FlightDisplayView* getFlightDisplay() { return dynamic_cast<FlightDisplayView*>(_flightView.data()); }
115 116
    
    QWidget* getCurrentViewWidget(void) { return _currentViewWidget; }
117

118 119 120 121
public slots:
    /** @brief Show the application settings */
    void showSettings();

122
    void loadSetupView();
123 124
    void loadFlightView();
    void loadPlanView();
Don Gagne's avatar
Don Gagne committed
125
    
126
    void manageLinks();
127 128 129 130 131 132 133 134 135 136

    /** @brief Show the online help for users */
    void showHelp();
    /** @brief Show the authors / credits */
    void showCredits();
    /** @brief Show the project roadmap */
    void showRoadMap();

    /** @brief Automatically reconnect last link */
    void enableAutoReconnect(bool enabled);
137

138
    /** @brief Save power by reducing update rates */
dogmaphobic's avatar
dogmaphobic committed
139
    void enableLowPowerMode(bool enabled) { _lowPowerMode = enabled; }
140 141 142 143 144 145

    void closeEvent(QCloseEvent* event);

    /** @brief Update the window name */
    void configureWindowName();

146
    void commsWidgetDestroyed(QObject *obj);
147

148
protected slots:
149 150 151 152 153
    /**
     * @brief Unchecks the normalActionItem.
     * Used as a triggered() callback by the fullScreenAction to make sure only one of it or the
     * normalAction are checked at a time, as they're mutually exclusive.
     */
154
    void fullScreenActionItemCallback(bool);
155 156 157 158 159
    /**
     * @brief Unchecks the fullScreenActionItem.
     * Used as a triggered() callback by the normalAction to make sure only one of it or the
     * fullScreenAction are checked at a time, as they're mutually exclusive.
     */
160 161 162 163 164
    void normalActionItemCallback(bool);
    /**
     * @brief Enable/Disable Status Bar
     */
    void showStatusBarCallback(bool checked);
165

166
signals:
167
    void initStatusChanged(const QString& message, int alignment, const QColor &color);
John Tapsell's avatar
John Tapsell committed
168 169
    /** Emitted when any value changes from any source */
    void valueChanged(const int uasId, const QString& name, const QString& unit, const QVariant& value, const quint64 msec);
170 171
    /** Emitted when any the Canvas elements within QML wudgets need updating */
    void repaintCanvas();
John Tapsell's avatar
John Tapsell committed
172

Don Gagne's avatar
Don Gagne committed
173
#ifdef QGC_MOUSE_ENABLED_LINUX
174 175
    /** @brief Forward X11Event to catch 3DMouse inputs */
    void x11EventOccured(XEvent *event);
Don Gagne's avatar
Don Gagne committed
176
#endif //QGC_MOUSE_ENABLED_LINUX
177 178 179 180 181 182 183 184 185 186 187

public:
    QGCMAVLinkLogPlayer* getLogPlayer()
    {
        return logPlayer;
    }

protected:

    typedef enum _VIEW_SECTIONS
    {
Don Gagne's avatar
Don Gagne committed
188
        VIEW_UNUSED5,           // Unused (don't remove, or it will screw up saved settigns indices)
189
        VIEW_UNUSED3,           // Unused (don't remove, or it will screw up saved settigns indices)
190
        VIEW_FLIGHT,            // Flight/Fly/Operate view mode. Used for 1st-person observation of the vehicle.
191
        VIEW_UNUSED4,           // Unused (don't remove, or it will screw up saved settigns indices)
192
        VIEW_SETUP,             // Setup view. Used for initializing the system for operation.
Don Gagne's avatar
Don Gagne committed
193 194
        VIEW_UNUSED1,           // Unused (don't remove, or it will screw up saved settigns indices)
        VIEW_UNUSED2,           // Unused (don't remove, or it will screw up saved settigns indices)
Don Gagne's avatar
Don Gagne committed
195
        VIEW_MISSIONEDITOR,     // New mission editor
196 197 198 199 200 201 202 203 204 205 206 207
    } VIEW_SECTIONS;

    /** @brief Catch window resize events */
    void resizeEvent(QResizeEvent * event);

    void connectCommonActions();

    void loadSettings();
    void storeSettings();

    QSettings settings;

208
    // Center widgets
209
    QPointer<Linecharts> linechartWidget;
210

dogmaphobic's avatar
dogmaphobic committed
211
    QPointer<MainToolBar> _mainToolBar;
212 213 214
    QPointer<MAVLinkDecoder> mavlinkDecoder;
    QGCMAVLinkLogPlayer* logPlayer;

Don Gagne's avatar
Don Gagne committed
215
#ifdef QGC_MOUSE_ENABLED_WIN
216
    /** @brief 3d Mouse support (WIN only) */
217 218
    Mouse3DInput* mouseInput;               ///< 3dConnexion 3dMouse SDK
    Mouse6dofInput* mouse;                  ///< Implementation for 3dMouse input
Don Gagne's avatar
Don Gagne committed
219
#endif // QGC_MOUSE_ENABLED_WIN
220

Don Gagne's avatar
Don Gagne committed
221
#ifdef QGC_MOUSE_ENABLED_LINUX
222 223 224
    /** @brief Reimplementation of X11Event to handle 3dMouse Events (magellan) */
    bool x11Event(XEvent *event);
    Mouse6dofInput* mouse;                  ///< Implementation for 3dMouse input
Don Gagne's avatar
Don Gagne committed
225
#endif // QGC_MOUSE_ENABLED_LINUX
226

227 228 229 230 231 232 233 234 235 236 237 238
    /** User interface actions **/
    QAction* connectUASAct;
    QAction* disconnectUASAct;
    QAction* startUASAct;
    QAction* returnUASAct;
    QAction* stopUASAct;
    QAction* killUASAct;


    LogCompressor* comp;
    QTimer* videoTimer;
    QTimer windowNameUpdateTimer;
239

Don Gagne's avatar
Don Gagne committed
240
private slots:
241
    void _linkStateChange(LinkInterface*);
242 243 244 245 246 247 248
	void _closeWindow(void) { close(); }
    void _vehicleAdded(Vehicle* vehicle);
    
#ifndef __mobile__
    void _showDockWidgetAction(bool show);
#endif
    
249 250 251
#ifdef UNITTEST_BUILD
    void _showQmlTestWidget(void);
#endif
252

253
private:
254
    /// Constructor is private since all creation should be through MainWindow::_create
255
    MainWindow(QSplashScreen* splashScreen);
256

Don Gagne's avatar
Don Gagne committed
257
    void _openUrl(const QString& url, const QString& errorMessage);
258

259
    // Center widgets
260 261
    QPointer<QWidget> _planView;
    QPointer<QWidget> _flightView;
262
    QPointer<QWidget> _setupView;
Don Gagne's avatar
Don Gagne committed
263
    QPointer<QWidget> _missionEditorView;
264

265
#ifndef __mobile__
266 267
    // Dock widget names
    static const char* _mavlinkDockWidgetName;
Don Gagne's avatar
Don Gagne committed
268
    static const char* _customCommandWidgetName;
269 270 271 272
    static const char* _filesDockWidgetName;
    static const char* _uasStatusDetailsDockWidgetName;
    static const char* _pfdDockWidgetName;
    static const char* _uasInfoViewDockWidgetName;
273
    static const char* _hilDockWidgetName;
Don Gagne's avatar
Don Gagne committed
274
    static const char* _analyzeDockWidgetName;
275

276 277
    QMap<QString, QGCDockWidget*>   _mapName2DockWidget;
    QMap<QString, QAction*>         _mapName2Action;
278
#endif
279

280 281
    void _buildPlanView(void);
    void _buildFlightView(void);
282 283
    void _buildSetupView(void);
    void _buildTerminalView(void);
Don Gagne's avatar
Don Gagne committed
284
    void _buildMissionEditorView(void);
285

286 287
    void _storeCurrentViewState(void);
    void _loadCurrentViewState(void);
288

289
#ifndef __mobile__
290 291 292 293
    void _createInnerDockWidget(const QString& widgetName);
    void _buildCommonWidgets(void);
    void _hideAllDockWidgets(void);
    void _showDockWidget(const QString &name, bool show);
294 295 296 297
    void _loadVisibleWidgetsSettings(void);
    void _storeVisibleWidgetsSettings(void);
    
    static const char* _visibleWidgetsKey;
298
#endif
299

dogmaphobic's avatar
dogmaphobic committed
300 301
    bool                    _autoReconnect;
    bool                    _lowPowerMode;           ///< If enabled, QGC reduces the update rates of all widgets
302
    bool                    _showStatusBar;
dogmaphobic's avatar
dogmaphobic committed
303 304 305 306 307 308 309 310
    QActionGroup*           _centerStackActionGroup;
    QVBoxLayout*            _centralLayout;
    QList<QObject*>         _commsWidgetList;
    QWidget*                _currentViewWidget;     ///< Currently displayed view widget
    QSplashScreen*          _splashScreen;          ///< Splash screen, NULL is splash screen not currently being shown
    VIEW_SECTIONS           _currentView;           ///< Currently displayed view
    Ui::MainWindow          _ui;
    QString                 _screenFileName;
311

dogmaphobic's avatar
dogmaphobic committed
312 313
    QString _getWindowStateKey();
    QString _getWindowGeometryKey();
314 315 316
};

#endif /* _MAINWINDOW_H_ */