mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-05 16:46:06 +01:00
4a974de1b5
git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@695 ebee16cc-31ac-478f-84a7-5cbb03baadba
75 lines
2.4 KiB
C++
75 lines
2.4 KiB
C++
/**
|
|
******************************************************************************
|
|
*
|
|
* @file mapgadgetoptionspage.cpp
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
* @brief
|
|
* @see The GNU Public License (GPL) Version 3
|
|
* @defgroup map
|
|
* @{
|
|
*
|
|
*****************************************************************************/
|
|
/*
|
|
* 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 "mapgadgetoptionspage.h"
|
|
#include "mapgadgetconfiguration.h"
|
|
#include <QtGui/QLabel>
|
|
#include <QtGui/QComboBox>
|
|
#include <QtGui/QSpinBox>
|
|
#include <QtGui/QDoubleSpinBox>
|
|
#include <QtGui/QHBoxLayout>
|
|
#include <QtGui/QVBoxLayout>
|
|
|
|
#include "ui_mapgadgetoptionspage.h"
|
|
|
|
|
|
MapGadgetOptionsPage::MapGadgetOptionsPage(MapGadgetConfiguration *config, QObject *parent) :
|
|
IOptionsPage(parent),
|
|
m_config(config)
|
|
{
|
|
}
|
|
|
|
QWidget *MapGadgetOptionsPage::createPage(QWidget *parent)
|
|
{
|
|
m_page = new Ui::MapGadgetOptionsPage();
|
|
QWidget *w = new QWidget(parent);
|
|
m_page->setupUi(w);
|
|
|
|
int index = m_page->providerComboBox->findText(m_config->mapProvider());
|
|
index = (index >= 0) ? index : 0;
|
|
m_page->providerComboBox->setCurrentIndex(index);
|
|
m_page->zoomSpinBox->setValue(m_config->zoom());
|
|
m_page->latitudeSpinBox->setValue(m_config->latitude());
|
|
m_page->longitudeSpinBox->setValue(m_config->longitude());
|
|
|
|
return w;
|
|
}
|
|
|
|
void MapGadgetOptionsPage::apply()
|
|
{
|
|
m_config->setMapProvider(m_page->providerComboBox->currentText());
|
|
m_config->setZoom(m_page->zoomSpinBox->value());
|
|
m_config->setLatitude(m_page->latitudeSpinBox->value());
|
|
m_config->setLongitude(m_page->longitudeSpinBox->value());
|
|
}
|
|
|
|
void MapGadgetOptionsPage::finish()
|
|
{
|
|
delete m_page;
|
|
}
|
|
|