mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-02-07 22:54:14 +01:00
This will allow us to build a parent project for qt-creator that sits above both openpilotgcs and uavobjgenerator so that we can build both projects at the same time. git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@2528 ebee16cc-31ac-478f-84a7-5cbb03baadba
131 lines
3.6 KiB
C++
131 lines
3.6 KiB
C++
/**
|
|
******************************************************************************
|
|
*
|
|
* @file aggregate.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
|
|
* @{
|
|
*
|
|
*****************************************************************************/
|
|
/*
|
|
* 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 QAGGREGATION_H
|
|
#define QAGGREGATION_H
|
|
|
|
#include "aggregation_global.h"
|
|
|
|
#include <QtCore/QObject>
|
|
#include <QtCore/QList>
|
|
#include <QtCore/QHash>
|
|
#include <QtCore/QReadWriteLock>
|
|
#include <QtCore/QReadLocker>
|
|
|
|
namespace Aggregation {
|
|
|
|
class AGGREGATION_EXPORT Aggregate : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Aggregate(QObject *parent = 0);
|
|
virtual ~Aggregate();
|
|
|
|
void add(QObject *component);
|
|
void remove(QObject *component);
|
|
|
|
template <typename T> T *component() {
|
|
QReadLocker(&lock());
|
|
foreach (QObject *component, m_components) {
|
|
if (T *result = qobject_cast<T *>(component))
|
|
return result;
|
|
}
|
|
return (T *)0;
|
|
}
|
|
|
|
template <typename T> QList<T *> components() {
|
|
QReadLocker(&lock());
|
|
QList<T *> results;
|
|
foreach (QObject *component, m_components) {
|
|
if (T *result = qobject_cast<T *>(component)) {
|
|
results << result;
|
|
}
|
|
}
|
|
return results;
|
|
}
|
|
|
|
static Aggregate *parentAggregate(QObject *obj);
|
|
static QReadWriteLock &lock();
|
|
|
|
private slots:
|
|
void deleteSelf(QObject *obj);
|
|
|
|
private:
|
|
static QHash<QObject *, Aggregate *> &aggregateMap();
|
|
|
|
QList<QObject *> m_components;
|
|
};
|
|
|
|
// get a component via global template function
|
|
template <typename T> T *query(Aggregate *obj)
|
|
{
|
|
if (!obj)
|
|
return (T *)0;
|
|
return obj->template component<T>();
|
|
}
|
|
|
|
template <typename T> T *query(QObject *obj)
|
|
{
|
|
if (!obj)
|
|
return (T *)0;
|
|
T *result = qobject_cast<T *>(obj);
|
|
if (!result) {
|
|
QReadLocker(&lock());
|
|
Aggregate *parentAggregation = Aggregate::parentAggregate(obj);
|
|
result = (parentAggregation ? query<T>(parentAggregation) : 0);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
// get all components of a specific type via template function
|
|
template <typename T> QList<T *> query_all(Aggregate *obj)
|
|
{
|
|
if (!obj)
|
|
return QList<T *>();
|
|
return obj->template components<T>();
|
|
}
|
|
|
|
template <typename T> QList<T *> query_all(QObject *obj)
|
|
{
|
|
if (!obj)
|
|
return QList<T *>();
|
|
QReadLocker(&lock());
|
|
Aggregate *parentAggregation = Aggregate::parentAggregate(obj);
|
|
QList<T *> results;
|
|
if (parentAggregation)
|
|
results = query_all<T>(parentAggregation);
|
|
else if (T *result = qobject_cast<T *>(obj))
|
|
results.append(result);
|
|
return results;
|
|
}
|
|
|
|
} // namespace Aggregation
|
|
|
|
#endif // QAGGREGATION_H
|