Clementine-audio-player-Mac.../src/core/closure.h

77 lines
1.9 KiB
C
Raw Normal View History

2011-10-05 11:36:08 +02:00
/* This file is part of Clementine.
Copyright 2011, David Sansome <me@davidsansome.com>
Clementine 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.
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
2011-10-04 18:26:40 +02:00
#ifndef CLOSURE_H
#define CLOSURE_H
#include <tr1/functional>
2011-10-04 18:26:40 +02:00
#include <QMetaMethod>
#include <QObject>
2011-10-05 11:36:08 +02:00
#include <boost/scoped_ptr.hpp>
2011-10-04 18:26:40 +02:00
#include "core/logging.h"
class ClosureArgumentWrapper {
public:
virtual ~ClosureArgumentWrapper() {}
2011-10-05 11:36:08 +02:00
virtual QGenericArgument arg() const = 0;
2011-10-04 18:26:40 +02:00
};
template<typename T>
class ClosureArgument : public ClosureArgumentWrapper {
public:
ClosureArgument(const T& data) : data_(data) {}
virtual QGenericArgument arg() const {
return Q_ARG(T, data_);
}
private:
T data_;
};
class Closure : public QObject {
Q_OBJECT
public:
Closure(QObject* sender, const char* signal,
QObject* receiver, const char* slot,
2011-10-05 11:36:08 +02:00
const ClosureArgumentWrapper* val0 = 0,
const ClosureArgumentWrapper* val1 = 0);
2011-10-04 18:26:40 +02:00
Closure(QObject* sender, const char* signal,
std::tr1::function<void()> callback);
2011-10-04 18:26:40 +02:00
private slots:
void Invoked();
2011-10-05 11:36:08 +02:00
void Cleanup();
2011-10-04 18:26:40 +02:00
private:
QMetaMethod slot_;
std::tr1::function<void()> callback_;
2011-10-04 18:26:40 +02:00
2011-10-05 11:36:08 +02:00
boost::scoped_ptr<const ClosureArgumentWrapper> val0_;
boost::scoped_ptr<const ClosureArgumentWrapper> val1_;
2011-10-04 18:26:40 +02:00
};
#define C_ARG(type, data) new ClosureArgument<type>(data)
#endif // CLOSURE_H