2012-03-17 20:24:50 +01:00
|
|
|
/********************************************************************************
|
2013-05-19 16:37:30 +02:00
|
|
|
* @file osgearthviewgadget.cpp
|
|
|
|
* @author The OpenPilot Team Copyright (C) 2012.
|
|
|
|
* @addtogroup GCSPlugins GCS Plugins
|
|
|
|
* @{
|
|
|
|
* @addtogroup OsgEarthview Plugin
|
|
|
|
* @{
|
|
|
|
* @brief Osg Earth view of UAV
|
|
|
|
*****************************************************************************/
|
2012-03-17 20:24:50 +01:00
|
|
|
/*
|
|
|
|
* 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 "osgearthviewgadget.h"
|
|
|
|
#include "osgearthviewwidget.h"
|
2012-03-17 21:45:04 +01:00
|
|
|
#include "osgearthviewgadgetconfiguration.h"
|
2012-03-17 20:24:50 +01:00
|
|
|
|
2012-03-17 21:45:04 +01:00
|
|
|
OsgEarthviewGadget::OsgEarthviewGadget(QString classId, OsgEarthviewWidget *widget, QWidget *parent) :
|
2013-05-19 16:37:30 +02:00
|
|
|
IUAVGadget(classId, parent),
|
|
|
|
m_widget(widget)
|
|
|
|
{}
|
2012-03-17 20:24:50 +01:00
|
|
|
|
|
|
|
OsgEarthviewGadget::~OsgEarthviewGadget()
|
|
|
|
{
|
|
|
|
delete m_widget;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-05-19 16:37:30 +02:00
|
|
|
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
|
2012-03-17 20:24:50 +01:00
|
|
|
*/
|
2013-05-19 16:37:30 +02:00
|
|
|
void OsgEarthviewGadget::loadConfiguration(IUAVGadgetConfiguration *config)
|
2012-03-17 20:24:50 +01:00
|
|
|
{
|
2013-05-19 16:37:30 +02:00
|
|
|
OsgEarthviewGadgetConfiguration *m = qobject_cast<OsgEarthviewGadgetConfiguration *>(config);
|
2012-03-17 20:24:50 +01:00
|
|
|
}
|