mkxp/src/disposable.h

88 lines
1.9 KiB
C
Raw Normal View History

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"
#include <sigc++/signal.h>
#include <sigc++/connection.h>
2013-09-01 14:27:21 +00:00
class Disposable
{
public:
sigc::signal<void> wasDisposed;
};
2013-09-01 14:27:21 +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
DisposeWatch(C &owner, P *&propLocation, NotifyFun notify = 0)
: owner(owner),
notify(notify),
propLocation(propLocation)
{}
2013-09-01 14:27:21 +00:00
~DisposeWatch()
{
dispCon.disconnect();
2013-09-01 14:27:21 +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
if (!prop)
return;
2013-09-01 14:27:21 +00:00
dispCon = prop->wasDisposed.connect
(sigc::mem_fun(this, &DisposeWatch::onDisposed));
}
2013-09-01 14:27:21 +00:00
private:
/* 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;
void onDisposed()
{
dispCon.disconnect();
propLocation = 0;
2013-09-01 14:27:21 +00:00
if (notify)
(owner.*notify)();
}
};
2013-09-01 14:27:21 +00:00
#endif // DISPOSABLE_H