/** ****************************************************************************** * * @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 #include #include #include #include #include #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; }