1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-07 18:46:06 +01:00
LibrePilot/ground/openpilotgcs/src/plugins/qmlview/qmlviewgadget.cpp
Dmytro Poplavskiy 861b21a18d Added a QML viewer plugin.
UAV objects used in PFD are available in the QMl context.
2012-02-05 22:33:14 +10:00

56 lines
2.0 KiB
C++

/**
******************************************************************************
*
* @file qmlviewgadget.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 "qmlviewgadget.h"
#include "qmlviewgadgetwidget.h"
#include "qmlviewgadgetconfiguration.h"
QmlViewGadget::QmlViewGadget(QString classId, QmlViewGadgetWidget *widget, QWidget *parent) :
IUAVGadget(classId, parent),
m_widget(widget)
{
}
QmlViewGadget::~QmlViewGadget()
{
delete m_widget;
}
/*
This is called when a configuration is loaded, and updates the plugin's settings.
Careful: the plugin is already drawn before the loadConfiguration method is called the
first time, so you have to be careful not to assume all the plugin values are initialized
the first time you use them
*/
void QmlViewGadget::loadConfiguration(IUAVGadgetConfiguration* config)
{
QmlViewGadgetConfiguration *m = qobject_cast<QmlViewGadgetConfiguration*>(config);
m_widget->setQmlFile(m->dialFile());
m_widget->enableOpenGL(m->useOpenGL());
}