Clementine-audio-player-Mac.../ext/libclementine-common/core/closure.cpp

73 lines
2.4 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
#include "closure.h"
#include "core/timeconstants.h"
2011-10-04 18:26:40 +02:00
namespace _detail {
ClosureBase::ClosureBase(ObjectHelper* helper) : helper_(helper) {}
2011-10-04 18:26:40 +02:00
ClosureBase::~ClosureBase() {}
2011-10-06 13:19:42 +02:00
CallbackClosure::CallbackClosure(QObject* sender, const char* signal,
std::function<void()> callback,
bool permanent)
: ClosureBase(new ObjectHelper(sender, signal, this, permanent)),
callback_(callback) {}
void CallbackClosure::Invoke() { callback_(); }
ObjectHelper* ClosureBase::helper() const { return helper_; }
ObjectHelper::ObjectHelper(QObject* sender, const char* signal,
ClosureBase* closure, bool permanent)
: closure_(closure),
permanent_(permanent) {
2012-11-22 15:15:07 +01:00
connect(sender, signal, SLOT(Invoked()));
connect(sender, SIGNAL(destroyed()), SLOT(deleteLater()));
}
2012-11-22 15:15:07 +01:00
void ObjectHelper::Invoked() {
closure_->Invoke();
if (!permanent_) deleteLater();
2011-10-05 11:36:08 +02:00
}
2011-10-04 18:26:40 +02:00
void Unpack(QList<QGenericArgument>*) {}
2012-11-22 15:15:07 +01:00
} // namespace _detail
_detail::ClosureBase* NewClosure(QObject* sender, const char* signal,
std::function<void()> callback) {
return new _detail::CallbackClosure(sender, signal, callback);
}
_detail::ClosureBase* NewPermanentClosure(QObject* sender, const char* signal,
std::function<void()> callback) {
return new _detail::CallbackClosure(sender, signal, callback, true);
}
void DoAfter(QObject* receiver, const char* slot, int msec) {
QTimer::singleShot(msec, receiver, slot);
}
void DoInAMinuteOrSo(QObject* receiver, const char* slot) {
int msec = (60 + (qrand() % 60)) * kMsecPerSec;
DoAfter(receiver, slot, msec);
}