2010-03-26 08:43:14 +01:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* @file mapgadget.cpp
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
|
|
* @brief
|
|
|
|
* @see The GNU Public License (GPL) Version 3
|
|
|
|
* @defgroup map
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
2010-03-19 18:31:13 +01:00
|
|
|
/*
|
2010-03-26 08:43:14 +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.
|
2010-03-19 18:31:13 +01:00
|
|
|
*
|
2010-03-26 08:43:14 +01:00
|
|
|
* 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
|
2010-03-19 18:31:13 +01:00
|
|
|
*/
|
|
|
|
#include "mapgadget.h"
|
|
|
|
#include "mapgadgetwidget.h"
|
2010-03-25 23:32:45 +01:00
|
|
|
#include "mapgadgetconfiguration.h"
|
2010-03-19 18:31:13 +01:00
|
|
|
|
2010-03-27 20:24:21 +01:00
|
|
|
MapGadget::MapGadget(QString classId, MapGadgetWidget *widget, QWidget *parent) :
|
|
|
|
IUAVGadget(classId, parent),
|
2010-03-24 20:50:09 +01:00
|
|
|
m_widget(widget)
|
2010-03-19 18:31:13 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
MapGadget::~MapGadget()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2010-03-25 23:32:45 +01:00
|
|
|
|
|
|
|
void MapGadget::loadConfiguration(IUAVGadgetConfiguration* config)
|
|
|
|
{
|
|
|
|
MapGadgetConfiguration *m = qobject_cast<MapGadgetConfiguration*>(config);
|
|
|
|
m_widget->setZoom(m->zoom());
|
|
|
|
m_widget->setPosition(QPointF(m->longitude(), m->latitude()));
|
|
|
|
}
|
|
|
|
|