2010-06-23 03:59:12 +02:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
2010-06-28 09:53:23 +02:00
|
|
|
* @file dialplugin.h
|
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
|
2010-07-16 04:29:25 +02:00
|
|
|
* @{
|
2010-07-16 03:55:11 +02:00
|
|
|
* @addtogroup DialPlugin Dial Plugin
|
2010-07-16 04:12:33 +02:00
|
|
|
* @{
|
2010-07-16 04:29:25 +02:00
|
|
|
* @brief Plots flight information rotary style dials
|
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 "dialplugin.h"
|
|
|
|
#include "dialgadgetfactory.h"
|
2010-06-23 03:59:12 +02:00
|
|
|
#include <QDebug>
|
|
|
|
#include <QtPlugin>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <extensionsystem/pluginmanager.h>
|
|
|
|
|
|
|
|
|
2010-06-28 09:53:23 +02:00
|
|
|
DialPlugin::DialPlugin()
|
2010-06-23 03:59:12 +02:00
|
|
|
{
|
|
|
|
// Do nothing
|
|
|
|
}
|
|
|
|
|
2010-06-28 09:53:23 +02:00
|
|
|
DialPlugin::~DialPlugin()
|
2010-06-23 03:59:12 +02:00
|
|
|
{
|
|
|
|
// Do nothing
|
|
|
|
}
|
|
|
|
|
2010-06-28 09:53:23 +02:00
|
|
|
bool DialPlugin::initialize(const QStringList& args, QString *errMsg)
|
2010-06-23 03:59:12 +02:00
|
|
|
{
|
|
|
|
Q_UNUSED(args);
|
|
|
|
Q_UNUSED(errMsg);
|
2010-06-28 09:53:23 +02:00
|
|
|
mf = new DialGadgetFactory(this);
|
2010-06-23 03:59:12 +02:00
|
|
|
addAutoReleasedObject(mf);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-06-28 09:53:23 +02:00
|
|
|
void DialPlugin::extensionsInitialized()
|
2010-06-23 03:59:12 +02:00
|
|
|
{
|
|
|
|
// Do nothing
|
|
|
|
}
|
|
|
|
|
2010-06-28 09:53:23 +02:00
|
|
|
void DialPlugin::shutdown()
|
2010-06-23 03:59:12 +02:00
|
|
|
{
|
|
|
|
// Do nothing
|
|
|
|
}
|
2010-06-28 09:53:23 +02:00
|
|
|
Q_EXPORT_PLUGIN(DialPlugin)
|
2010-06-23 03:59:12 +02:00
|
|
|
|