diff --git a/src/ui/MainWindow.cc b/src/ui/MainWindow.cc index 6d939e417dad543bced479feb677e960bbdaae42..52070998093d8308206deb67d9db2c4eb0417c13 100644 --- a/src/ui/MainWindow.cc +++ b/src/ui/MainWindow.cc @@ -38,7 +38,7 @@ This file is part of the QGROUNDCONTROL project #include #include #include -#include +#include #include "QGC.h" #include "MAVLinkSimulationLink.h" #include "SerialLink.h" @@ -272,7 +272,8 @@ void MainWindow::init() apmToolBar->setTerminalViewAction(ui.actionTerminalView); QDockWidget *widget = new QDockWidget(tr("APM Tool Bar"),this); - widget->setWidget(apmToolBar); + QWidget *toolbarWidget = QWidget::createWindowContainer(apmToolBar, this); + widget->setWidget(toolbarWidget); widget->setMinimumHeight(72); widget->setMaximumHeight(72); widget->setMinimumWidth(1024); diff --git a/src/ui/apmtoolbar.cpp b/src/ui/apmtoolbar.cpp index 1de585123f96ed97284a09e84e3283ac8495a6a3..cd5ffb8be2235818c3b79c67fa21b77dbe810e9f 100644 --- a/src/ui/apmtoolbar.cpp +++ b/src/ui/apmtoolbar.cpp @@ -1,5 +1,5 @@ #include -#include +#include #include #include "LinkManager.h" #include "MainWindow.h" @@ -7,7 +7,7 @@ #include "apmtoolbar.h" APMToolBar::APMToolBar(QWidget *parent): - QDeclarativeView(parent), m_uas(0) + QQuickView(), m_uas(0) { // Configure our QML object @@ -20,7 +20,7 @@ APMToolBar::APMToolBar(QWidget *parent): #else setSource(QUrl::fromLocalFile("qml/ApmToolBar.qml")); #endif - setResizeMode(QDeclarativeView::SizeRootObjectToView); + setResizeMode(QQuickView::SizeRootObjectToView); this->rootContext()->setContextProperty("globalObj", this); connect(LinkManager::instance(),SIGNAL(newLink(LinkInterface*)), this, SLOT(updateLinkDisplay(LinkInterface*))); @@ -55,7 +55,8 @@ void APMToolBar::activeUasSet(UASInterface *uas) } void APMToolBar::armingChanged(bool armed) { - this->rootObject()->setProperty("armed",armed); + // FIXME: This doesn't work in Qt5, figure out what it should be + //this->rootObject()->setProperty("armed",armed); } void APMToolBar::armingChanged(int sysId, QString armingState) @@ -161,8 +162,9 @@ void APMToolBar::connectMAV() void APMToolBar::setConnection(bool connection) { // Change the image to represent the state - QObject *object = rootObject(); - object->setProperty("connected", connection); + // FIXME: Doesn't work the same in Qt5, fix this + //QObject *object = rootObject(); + //object->setProperty("connected", connection); } APMToolBar::~APMToolBar() @@ -198,14 +200,17 @@ void APMToolBar::showConnectionDialog() void APMToolBar::updateLinkDisplay(LinkInterface* newLink) { qDebug() << "APMToolBar: updateLinkDisplay"; - QObject *object = rootObject(); + // FIXME: Doesn't work the same in Qt5, fix this. + //QObject *object = rootObject(); - if (newLink && object){ + if (newLink && rootObject()){ qint64 baudrate = newLink->getConnectionSpeed(); - object->setProperty("baudrateLabel", QString::number(baudrate)); + // FIXME: Doesn't work in Qt5 + //object->setProperty("baudrateLabel", QString::number(baudrate)); QString linkName = newLink->getName(); - object->setProperty("linkNameLabel", linkName); + // FIXME: Doesn't work in Qt5 + //object->setProperty("linkNameLabel", linkName); connect(newLink, SIGNAL(connected(bool)), this, SLOT(setConnection(bool))); diff --git a/src/ui/apmtoolbar.h b/src/ui/apmtoolbar.h index 5bed5a224e0fb9e802f325cbe64d1b3ad2f9e310..7cbd4c0519f7fb2d83dc9278e79fa11d006dc147 100644 --- a/src/ui/apmtoolbar.h +++ b/src/ui/apmtoolbar.h @@ -2,12 +2,12 @@ #define APMTOOLBAR_H #include -#include +#include #include "UASInterface.h" class LinkInterface; -class APMToolBar : public QDeclarativeView +class APMToolBar : public QQuickView { Q_OBJECT public: