From 03418ce78766b062ce5af7aaf99f7f2c62152b6b Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 27 Apr 2014 19:37:59 +0300 Subject: Add UpdateStatusListener. --- src/listeners/updatestatuslistener.cpp | 36 ++++++++++++++++++++++++++++++++ src/listeners/updatestatuslistener.h | 38 ++++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 src/listeners/updatestatuslistener.cpp create mode 100644 src/listeners/updatestatuslistener.h (limited to 'src/listeners') diff --git a/src/listeners/updatestatuslistener.cpp b/src/listeners/updatestatuslistener.cpp new file mode 100644 index 000000000..12673f3a7 --- /dev/null +++ b/src/listeners/updatestatuslistener.cpp @@ -0,0 +1,36 @@ +/* + * The ManaPlus Client + * Copyright (C) 2014 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * 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 2 of the License, or + * 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, see . + */ + +#include "listeners/updatestatuslistener.h" + +#include "debug.h" + +defineListener(UpdateStatusListener) + +void UpdateStatusListener::distributeEvent() +{ + FOR_EACH (std::vector::iterator, + it, mListeners) + { + UpdateStatusListener *const listener = *it; + if (listener) + listener->updateStatus(); + } +} diff --git a/src/listeners/updatestatuslistener.h b/src/listeners/updatestatuslistener.h new file mode 100644 index 000000000..8671687c6 --- /dev/null +++ b/src/listeners/updatestatuslistener.h @@ -0,0 +1,38 @@ +/* + * The ManaPlus Client + * Copyright (C) 2014 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * 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 2 of the License, or + * 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, see . + */ + +#ifndef LISTENERS_UPDATESTATUSLISTENER_H +#define LISTENERS_UPDATESTATUSLISTENER_H + +#include "listeners/baselistener.hpp" + +#include "localconsts.h" + +class UpdateStatusListener +{ + public: + virtual void updateStatus() = 0; + + static void distributeEvent(); + + defineListenerHeader(UpdateStatusListener) +}; + +#endif // LISTENERS_UPDATESTATUSLISTENER_H -- cgit v1.2.3-60-g2f50