2013-09-01 14:27:21 +00:00
|
|
|
/*
|
|
|
|
** disposable.h
|
|
|
|
**
|
|
|
|
** This file is part of mkxp.
|
|
|
|
**
|
|
|
|
** Copyright (C) 2013 Jonas Kulla <Nyocurio@gmail.com>
|
|
|
|
**
|
|
|
|
** mkxp 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 2 of the License, or
|
|
|
|
** (at your option) any later version.
|
|
|
|
**
|
|
|
|
** mkxp 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 mkxp. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DISPOSABLE_H
|
|
|
|
#define DISPOSABLE_H
|
|
|
|
|
|
|
|
#include "exception.h"
|
|
|
|
|
2013-12-04 16:48:37 +00:00
|
|
|
#include <sigc++/signal.h>
|
2014-08-09 16:35:01 +00:00
|
|
|
#include <sigc++/connection.h>
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
class Disposable
|
|
|
|
{
|
|
|
|
public:
|
2014-08-09 16:35:01 +00:00
|
|
|
sigc::signal<void> wasDisposed;
|
|
|
|
};
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2014-08-09 16:35:01 +00:00
|
|
|
/* A helper struct which monitors the dispose signal of
|
|
|
|
* properties, and automatically sets the prop pointer to
|
|
|
|
* null. Can call an optional notify method when prop is
|
|
|
|
* nulled */
|
|
|
|
template<class C, typename P>
|
|
|
|
struct DisposeWatch
|
|
|
|
{
|
|
|
|
typedef void (C::*NotifyFun)();
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2014-08-12 19:12:28 +00:00
|
|
|
DisposeWatch(C &owner, P *&propLocation, NotifyFun notify = 0)
|
2014-08-09 16:35:01 +00:00
|
|
|
: owner(owner),
|
|
|
|
notify(notify),
|
|
|
|
propLocation(propLocation)
|
|
|
|
{}
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2014-08-09 16:35:01 +00:00
|
|
|
~DisposeWatch()
|
|
|
|
{
|
|
|
|
dispCon.disconnect();
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
2014-08-09 16:35:01 +00:00
|
|
|
/* Call this when a new object was set for the prop */
|
|
|
|
void update(Disposable *prop)
|
|
|
|
{
|
|
|
|
dispCon.disconnect();
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2014-08-09 16:35:01 +00:00
|
|
|
if (!prop)
|
|
|
|
return;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2014-08-09 16:35:01 +00:00
|
|
|
dispCon = prop->wasDisposed.connect
|
|
|
|
(sigc::mem_fun(this, &DisposeWatch::onDisposed));
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
private:
|
2014-08-12 19:12:28 +00:00
|
|
|
/* The object owning the prop (and this helper) */
|
|
|
|
C &owner;
|
|
|
|
/* Optional notify method */
|
|
|
|
const NotifyFun notify;
|
|
|
|
/* Location of the prop pointer inside the owner */
|
|
|
|
P * &propLocation;
|
|
|
|
sigc::connection dispCon;
|
|
|
|
|
2014-08-09 16:35:01 +00:00
|
|
|
void onDisposed()
|
|
|
|
{
|
|
|
|
dispCon.disconnect();
|
|
|
|
propLocation = 0;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2014-08-09 16:35:01 +00:00
|
|
|
if (notify)
|
2014-08-12 19:12:28 +00:00
|
|
|
(owner.*notify)();
|
2014-08-09 16:35:01 +00:00
|
|
|
}
|
|
|
|
};
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
#endif // DISPOSABLE_H
|