2010-03-16 08:48:35 +01:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* @file iuavgadget.h
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
|
|
* Parts by Nokia Corporation (qt-info@nokia.com) Copyright (C) 2009.
|
|
|
|
* @brief
|
|
|
|
* @see The GNU Public License (GPL) Version 3
|
|
|
|
* @defgroup coreplugin
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef IUAVGADGET_H
|
|
|
|
#define IUAVGADGET_H
|
|
|
|
|
|
|
|
#include <coreplugin/icontext.h>
|
|
|
|
#include <coreplugin/core_global.h>
|
2010-03-24 20:48:24 +01:00
|
|
|
#include <QtGui/QComboBox>
|
2010-03-16 08:48:35 +01:00
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QWidget;
|
2010-03-24 20:48:24 +01:00
|
|
|
class QComboBox;
|
2010-03-16 08:48:35 +01:00
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
2010-03-24 20:48:24 +01:00
|
|
|
class IUAVGadgetConfiguration;
|
|
|
|
|
2010-03-16 08:48:35 +01:00
|
|
|
class CORE_EXPORT IUAVGadget : public IContext
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2010-03-26 23:38:01 +01:00
|
|
|
IUAVGadget(QString classId, QList<IUAVGadgetConfiguration*> *configurations, QObject *parent = 0);
|
2010-03-16 08:48:35 +01:00
|
|
|
virtual ~IUAVGadget() {}
|
|
|
|
|
2010-03-26 23:38:01 +01:00
|
|
|
virtual QList<int> context() const = 0;
|
2010-03-16 08:48:35 +01:00
|
|
|
virtual QWidget *widget() = 0;
|
|
|
|
virtual QString contextHelpId() const { return QString(); }
|
2010-03-24 20:48:24 +01:00
|
|
|
QString classId() const { return m_classId; }
|
|
|
|
|
2010-03-26 23:38:01 +01:00
|
|
|
virtual void loadConfiguration(IUAVGadgetConfiguration* /*config*/) { }
|
|
|
|
IUAVGadgetConfiguration *activeConfiguration() { return m_activeConfiguration; }
|
|
|
|
void setActiveConfiguration(IUAVGadgetConfiguration *config);
|
|
|
|
QComboBox *toolBar() { return m_toolbar; }
|
|
|
|
virtual QByteArray saveState();
|
|
|
|
virtual void restoreState(QByteArray state);
|
2010-03-24 20:48:24 +01:00
|
|
|
public slots:
|
2010-03-26 23:38:01 +01:00
|
|
|
void configurationChanged(IUAVGadgetConfiguration* config);
|
|
|
|
void configurationAdded(IUAVGadgetConfiguration* config);
|
|
|
|
void configurationToBeDeleted(IUAVGadgetConfiguration* config);
|
|
|
|
void configurationNameChanged(QString oldName, QString newName);
|
2010-03-24 20:48:24 +01:00
|
|
|
private slots:
|
2010-03-26 23:38:01 +01:00
|
|
|
void loadConfiguration(int index);
|
|
|
|
protected:
|
|
|
|
QComboBox *m_toolbar;
|
2010-03-24 20:48:24 +01:00
|
|
|
private:
|
2010-03-26 23:38:01 +01:00
|
|
|
void updateToolbar();
|
2010-03-24 20:48:24 +01:00
|
|
|
QString m_classId;
|
2010-03-26 23:38:01 +01:00
|
|
|
IUAVGadgetConfiguration *m_activeConfiguration;
|
|
|
|
QList<IUAVGadgetConfiguration*> *m_configurations;
|
2010-03-16 08:48:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Core
|
|
|
|
|
|
|
|
#endif // IUAVGADGET_H
|