MainWindow.h 5.01 KB
Newer Older
1 2 3 4 5 6 7 8
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/
9 10 11 12 13 14 15 16 17 18 19


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

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

Don Gagne's avatar
Don Gagne committed
21 22 23 24
#ifdef __mobile__
#error Should not be include in mobile build
#endif

25
#include <QMainWindow>
26 27 28
#include <QStatusBar>
#include <QStackedWidget>
#include <QSettings>
29
#include <QList>
30 31 32 33 34 35 36 37

#include "LinkManager.h"
#include "LinkInterface.h"
#include "UASInterface.h"
#include "LogCompressor.h"
#include "QGCMAVLinkInspector.h"
#include "QGCMAVLinkLogPlayer.h"
#include "MAVLinkDecoder.h"
38
#include "Vehicle.h"
39
#include "QGCDockWidget.h"
40 41 42
#include "QGCQmlWidgetHolder.h"

#include "ui_MainWindow.h"
43

44
class QGCStatusBar;
45
class Linecharts;
46 47 48 49 50 51 52 53 54 55

/**
 * @brief Main Application Window
 *
 **/
class MainWindow : public QMainWindow
{
    Q_OBJECT

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

60 61
    /// @brief Deletes the MainWindow singleton
    void deleteInstance(void);
62

Don Gagne's avatar
Don Gagne committed
63
    /// @brief Creates the MainWindow singleton. Should only be called once by QGCApplication.
Lorenz Meier's avatar
Lorenz Meier committed
64
    static MainWindow* _create();
65

66 67
    ~MainWindow();

68

69
    /** @brief Get low power mode setting */
70
    bool lowPowerModeEnabled() const
71
    {
dogmaphobic's avatar
dogmaphobic committed
72
        return _lowPowerMode;
73 74
    }

75 76 77
    /// @brief Saves the last used connection
    void saveLastUsedConnection(const QString connection);

78
    // Called from MainWindow.qml when the user accepts the window close dialog
79
    void _reallyClose(void);
80

Don Gagne's avatar
Don Gagne committed
81 82 83
    /// @return Root qml object of main window QML
    QObject* rootQmlObject(void);

84 85
public slots:
    /** @brief Save power by reducing update rates */
dogmaphobic's avatar
dogmaphobic committed
86
    void enableLowPowerMode(bool enabled) { _lowPowerMode = enabled; }
87 88 89 90 91 92

    void closeEvent(QCloseEvent* event);

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

93
protected slots:
94 95 96 97
    /**
     * @brief Enable/Disable Status Bar
     */
    void showStatusBarCallback(bool checked);
98

99
signals:
100
    void initStatusChanged(const QString& message, int alignment, const QColor &color);
John Tapsell's avatar
John Tapsell committed
101 102
    /** 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);
103
    void reallyClose(void);
John Tapsell's avatar
John Tapsell committed
104

105 106 107
    // Used for unit tests to know when the main window closes
    void mainWindowClosed(void);

108 109 110 111 112
public:
    QGCMAVLinkLogPlayer* getLogPlayer()
    {
        return logPlayer;
    }
Don Gagne's avatar
Don Gagne committed
113

114 115 116 117 118 119 120 121 122
protected:
    void connectCommonActions();

    void loadSettings();
    void storeSettings();

    QSettings settings;

    QGCMAVLinkLogPlayer* logPlayer;
Don Gagne's avatar
Don Gagne committed
123
#ifdef QGC_MOUSE_ENABLED_WIN
124
    /** @brief 3d Mouse support (WIN only) */
125 126
    Mouse3DInput* mouseInput;               ///< 3dConnexion 3dMouse SDK
    Mouse6dofInput* mouse;                  ///< Implementation for 3dMouse input
Don Gagne's avatar
Don Gagne committed
127
#endif // QGC_MOUSE_ENABLED_WIN
128 129 130 131 132 133 134 135 136 137 138 139 140

    /** User interface actions **/
    QAction* connectUASAct;
    QAction* disconnectUASAct;
    QAction* startUASAct;
    QAction* returnUASAct;
    QAction* stopUASAct;
    QAction* killUASAct;


    LogCompressor* comp;
    QTimer* videoTimer;
    QTimer windowNameUpdateTimer;
141

Don Gagne's avatar
Don Gagne committed
142
private slots:
143
    void _closeWindow(void) { close(); }
144 145
    void _vehicleAdded(Vehicle* vehicle);
    void _showDockWidgetAction(bool show);
146
    void _showAdvancedUIChanged(bool advanced);
147

148 149 150
#ifdef UNITTEST_BUILD
    void _showQmlTestWidget(void);
#endif
151

152
private:
153
    /// Constructor is private since all creation should be through MainWindow::_create
Lorenz Meier's avatar
Lorenz Meier committed
154
    MainWindow();
155

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

158 159
    QMap<QString, QGCDockWidget*>   _mapName2DockWidget;
    QMap<QString, QAction*>         _mapName2Action;
160

161 162
    void _storeCurrentViewState(void);
    void _loadCurrentViewState(void);
dogmaphobic's avatar
dogmaphobic committed
163
    bool _createInnerDockWidget(const QString& widgetName);
164 165 166
    void _buildCommonWidgets(void);
    void _hideAllDockWidgets(void);
    void _showDockWidget(const QString &name, bool show);
167 168
    void _loadVisibleWidgetsSettings(void);
    void _storeVisibleWidgetsSettings(void);
169
    MAVLinkDecoder* _mavLinkDecoderInstance(void);
170

171
    MAVLinkDecoder*         _mavlinkDecoder;
dogmaphobic's avatar
dogmaphobic committed
172
    bool                    _lowPowerMode;           ///< If enabled, QGC reduces the update rates of all widgets
173
    bool                    _showStatusBar;
dogmaphobic's avatar
dogmaphobic committed
174 175
    QVBoxLayout*            _centralLayout;
    Ui::MainWindow          _ui;
176

177 178
    QGCQmlWidgetHolder*     _mainQmlWidgetHolder;

179 180
    bool    _forceClose;

dogmaphobic's avatar
dogmaphobic committed
181
    QString _getWindowGeometryKey();
182 183 184
};

#endif /* _MAINWINDOW_H_ */