2010-06-23 03:59:12 +02:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
2010-06-28 09:53:23 +02:00
|
|
|
* @file dialgadgetfactory.cpp
|
2010-07-16 03:55:11 +02:00
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
2010-06-23 03:59:12 +02:00
|
|
|
* @see The GNU Public License (GPL) Version 3
|
2010-07-16 03:55:11 +02:00
|
|
|
* @addtogroup GCSPlugins GCS Plugins
|
|
|
|
* @addtogroup DialPlugin Dial Plugin
|
2010-07-16 04:12:33 +02:00
|
|
|
* @{
|
2010-07-16 03:55:11 +02:00
|
|
|
* @brief
|
2010-06-23 03:59:12 +02: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
|
|
|
|
*/
|
2010-06-28 09:53:23 +02:00
|
|
|
#include "dialgadgetfactory.h"
|
|
|
|
#include "dialgadgetwidget.h"
|
|
|
|
#include "dialgadget.h"
|
|
|
|
#include "dialgadgetconfiguration.h"
|
|
|
|
#include "dialgadgetoptionspage.h"
|
2010-06-23 03:59:12 +02:00
|
|
|
#include <coreplugin/iuavgadget.h>
|
|
|
|
|
2010-06-28 09:53:23 +02:00
|
|
|
DialGadgetFactory::DialGadgetFactory(QObject *parent) :
|
|
|
|
IUAVGadgetFactory(QString("DialGadget"),
|
2010-06-23 03:59:12 +02:00
|
|
|
tr("Analog Dial Gadget"),
|
|
|
|
parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-06-28 09:53:23 +02:00
|
|
|
DialGadgetFactory::~DialGadgetFactory()
|
2010-06-23 03:59:12 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-06-28 09:53:23 +02:00
|
|
|
Core::IUAVGadget* DialGadgetFactory::createGadget(QWidget *parent)
|
2010-06-23 03:59:12 +02:00
|
|
|
{
|
2010-06-28 09:53:23 +02:00
|
|
|
DialGadgetWidget* gadgetWidget = new DialGadgetWidget(parent);
|
|
|
|
return new DialGadget(QString("DialGadget"), gadgetWidget, parent);
|
2010-06-23 03:59:12 +02:00
|
|
|
}
|
|
|
|
|
2010-06-28 09:53:23 +02:00
|
|
|
IUAVGadgetConfiguration *DialGadgetFactory::createConfiguration(const QByteArray &state)
|
2010-06-23 03:59:12 +02:00
|
|
|
{
|
2010-06-28 09:53:23 +02:00
|
|
|
return new DialGadgetConfiguration(QString("DialGadget"), state);
|
2010-06-23 03:59:12 +02:00
|
|
|
}
|
|
|
|
|
2010-06-28 09:53:23 +02:00
|
|
|
IOptionsPage *DialGadgetFactory::createOptionsPage(IUAVGadgetConfiguration *config)
|
2010-06-23 03:59:12 +02:00
|
|
|
{
|
2010-06-28 09:53:23 +02:00
|
|
|
return new DialGadgetOptionsPage(qobject_cast<DialGadgetConfiguration*>(config));
|
2010-06-23 03:59:12 +02:00
|
|
|
}
|
|
|
|
|