mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-09 20:46:07 +01:00
103 lines
3.1 KiB
C++
103 lines
3.1 KiB
C++
/**
|
|
******************************************************************************
|
|
*
|
|
* @file qmlviewgadgetwidget.cpp
|
|
* @author Edouard Lafargue Copyright (C) 2010.
|
|
* @author Dmytro Poplavskiy Copyright (C) 2012.
|
|
* @addtogroup GCSPlugins GCS Plugins
|
|
* @{
|
|
* @addtogroup OPMapPlugin QML Viewer Plugin
|
|
* @{
|
|
* @brief The QML Viewer Gadget
|
|
*****************************************************************************/
|
|
/*
|
|
* This program 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.
|
|
*
|
|
* This program 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 this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include "qmlviewgadgetwidget.h"
|
|
#include "extensionsystem/pluginmanager.h"
|
|
#include "uavobjectmanager.h"
|
|
#include "uavobject.h"
|
|
#include "utils/svgimageprovider.h"
|
|
|
|
#include <QDebug>
|
|
#include <QSvgRenderer>
|
|
#include <QtOpenGL/QGLWidget>
|
|
#include <QtCore/qfileinfo.h>
|
|
#include <QtCore/qdir.h>
|
|
|
|
#include <QQmlEngine>
|
|
#include <QQmlContext>
|
|
|
|
QmlViewGadgetWidget::QmlViewGadgetWidget(QWindow *parent) :
|
|
QQuickView(parent)
|
|
{
|
|
setResizeMode(SizeRootObjectToView);
|
|
|
|
QStringList objectsToExport;
|
|
objectsToExport << "VelocityState" <<
|
|
"PositionState" <<
|
|
"AttitudeState" <<
|
|
"GPSPositionSensor" <<
|
|
"GCSTelemetryStats" <<
|
|
"FlightBatteryState";
|
|
|
|
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
|
|
UAVObjectManager *objManager = pm->getObject<UAVObjectManager>();
|
|
|
|
foreach(const QString &objectName, objectsToExport) {
|
|
UAVObject *object = objManager->getObject(objectName);
|
|
|
|
if (object) {
|
|
engine()->rootContext()->setContextProperty(objectName, object);
|
|
} else {
|
|
qWarning() << "Failed to load object" << objectName;
|
|
}
|
|
}
|
|
|
|
engine()->rootContext()->setContextProperty("qmlWidget", this);
|
|
}
|
|
|
|
QmlViewGadgetWidget::~QmlViewGadgetWidget()
|
|
{}
|
|
|
|
void QmlViewGadgetWidget::setQmlFile(QString fn)
|
|
{
|
|
m_fn = fn;
|
|
|
|
engine()->removeImageProvider("svg");
|
|
SvgImageProvider *svgProvider = new SvgImageProvider(fn);
|
|
engine()->addImageProvider("svg", svgProvider);
|
|
|
|
// it's necessary to allow qml side to query svg element position
|
|
engine()->rootContext()->setContextProperty("svgRenderer", svgProvider);
|
|
engine()->setBaseUrl(QUrl::fromLocalFile(fn));
|
|
|
|
qDebug() << Q_FUNC_INFO << fn;
|
|
setSource(QUrl::fromLocalFile(fn));
|
|
|
|
foreach(const QQmlError &error, errors()) {
|
|
qDebug() << error.description();
|
|
}
|
|
}
|
|
|
|
/*!
|
|
\brief Enables/Disables OpenGL
|
|
*/
|
|
void QmlViewGadgetWidget::enableOpenGL(bool flag)
|
|
{
|
|
Q_UNUSED(flag)
|
|
}
|