QGCGoogleEarthView.h 1.92 KB
Newer Older
pixhawk's avatar
pixhawk committed
1 2 3 4
#ifndef QGCGOOGLEEARTHVIEW_H
#define QGCGOOGLEEARTHVIEW_H

#include <QWidget>
5 6
#include <QTimer>
#include <UASInterface.h>
pixhawk's avatar
pixhawk committed
7

8 9 10 11
#if (defined Q_OS_MAC)
#include <QWebView>
#endif

12
#ifdef _MSC_VER
13 14 15
#include <ActiveQt/QAxWidget>
#include "windows.h"

16
class QGCWebAxWidget : public QAxWidget
17 18 19
{
public:

20
    QGCWebAxWidget(QWidget* parent = 0, Qt::WindowFlags f = 0)
21 22
        : QAxWidget(parent, f)
    {
23 24
		// Set web browser control
		setControl("{8856F961-340A-11D0-A96B-00C04FD705A2}");
25 26 27 28 29 30 31 32 33 34 35
    }
protected:
    virtual bool translateKeyEvent(int message, int keycode) const
    {
        if (message >= WM_KEYFIRST && message <= WM_KEYLAST)
            return true;
        else
            return QAxWidget::translateKeyEvent(message, keycode);
    }

};
36 37
#endif

pixhawk's avatar
pixhawk committed
38
namespace Ui {
39 40
#ifdef _MSC_VER
    class QGCGoogleEarthView;
41
#else
pixhawk's avatar
pixhawk committed
42
    class QGCGoogleEarthView;
43
#endif
pixhawk's avatar
pixhawk committed
44 45 46 47 48 49 50 51 52 53
}

class QGCGoogleEarthView : public QWidget
{
    Q_OBJECT

public:
    explicit QGCGoogleEarthView(QWidget *parent = 0);
    ~QGCGoogleEarthView();

54 55 56 57 58
public slots:
    /** @brief Update the internal state. Does not trigger a redraw */
    void updateState();
    /** @brief Set the currently selected UAS */
    void setActiveUAS(UASInterface* uas);
59
    /** @brief Show the vehicle trail */
pixhawk's avatar
pixhawk committed
60
    void showTrail(bool state);
61
    /** @brief Show the waypoints */
pixhawk's avatar
pixhawk committed
62
    void showWaypoints(bool state);
63 64
    /** @brief Follow the aircraft during flight */
    void follow(bool follow);
65

pixhawk's avatar
pixhawk committed
66 67
protected:
    void changeEvent(QEvent *e);
68
    QTimer* updateTimer;
pixhawk's avatar
pixhawk committed
69
    int refreshRateMs;
70 71
    UASInterface* mav;
    bool followCamera;
pixhawk's avatar
pixhawk committed
72
    bool trailEnabled;
pixhawk's avatar
pixhawk committed
73
    bool webViewInitialized;
74 75
#ifdef _MSC_VER
    QGCWebAxWidget* webViewWin;
76 77 78 79
#endif
#if (defined Q_OS_MAC)
    QWebView* webViewMac;
#endif
pixhawk's avatar
pixhawk committed
80

81 82 83
    /** @brief Enable / disable widget updating */
    void showEvent(QShowEvent* event);

pixhawk's avatar
pixhawk committed
84
private:
85 86
#ifdef _MSC_VER
    Ui::QGCGoogleEarthView* ui;
87 88
#else
    Ui::QGCGoogleEarthView* ui;
89
#endif
pixhawk's avatar
pixhawk committed
90 91
};

92
#endif // QGCGOOGLEEARTHVIEW_H