From 5781d238e97689be482c5ac691143ce35e3e278e Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 14 May 2014 15:36:21 +0300 Subject: Move playerlistener into separate file. --- src/CMakeLists.txt | 2 ++ src/Makefile.am | 2 ++ src/gui/popups/popupmenu.cpp | 22 ---------------- src/gui/popups/popupmenu.h | 25 +----------------- src/listeners/playerlistener.cpp | 51 ++++++++++++++++++++++++++++++++++++ src/listeners/playerlistener.h | 56 ++++++++++++++++++++++++++++++++++++++++ 6 files changed, 112 insertions(+), 46 deletions(-) create mode 100644 src/listeners/playerlistener.cpp create mode 100644 src/listeners/playerlistener.h diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index aac6e98e4..5018b97cb 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -853,6 +853,8 @@ SET(SRCS gui/models/magicschoolmodel.h events/mouseevent.h listeners/mouselistener.h + listeners/playerlistener.cpp + listeners/playerlistener.h gui/rect.h events/selectionevent.h listeners/selectionlistener.h diff --git a/src/Makefile.am b/src/Makefile.am index 9040b95d4..0a99d1997 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -172,6 +172,8 @@ manaplus_SOURCES += events/actionevent.h \ gui/models/magicschoolmodel.h \ events/mouseevent.h \ listeners/mouselistener.h \ + listeners/playerlistener.cpp \ + listeners/playerlistener.h \ gui/rect.h \ events/selectionevent.h \ listeners/selectionlistener.h \ diff --git a/src/gui/popups/popupmenu.cpp b/src/gui/popups/popupmenu.cpp index c284b92a0..7629bf9ed 100644 --- a/src/gui/popups/popupmenu.cpp +++ b/src/gui/popups/popupmenu.cpp @@ -2900,25 +2900,3 @@ void PopupMenu::showGMPopup() showPopup(getX(), getY()); } - -PlayerListener::PlayerListener() : - ActionListener(), - mNick(), - mDialog(nullptr), - mType(static_cast(ActorType::UNKNOWN)) -{ -} - -void PlayerListener::action(const ActionEvent &event) -{ - if (event.getId() == "ok" && !mNick.empty() && mDialog) - { - std::string comment = mDialog->getText(); - Being *const being = actorManager->findBeingByName( - mNick, static_cast(mType)); - if (being) - being->setComment(comment); - Being::saveComment(mNick, comment, mType); - } - mDialog = nullptr; -} diff --git a/src/gui/popups/popupmenu.h b/src/gui/popups/popupmenu.h index fbbb69cd0..1fc124b16 100644 --- a/src/gui/popups/popupmenu.h +++ b/src/gui/popups/popupmenu.h @@ -27,6 +27,7 @@ #include "gui/widgets/popup.h" #include "listeners/actionlistener.h" +#include "listeners/playerlistener.h" #include "listeners/renamelistener.h" #include "localconsts.h" @@ -47,30 +48,6 @@ class TextField; class ProgressBar; class Window; -class PlayerListener : public ActionListener -{ - public: - PlayerListener(); - - A_DELETE_COPY(PlayerListener) - - void action(const ActionEvent &event) override final; - - void setNick(const std::string &name) - { mNick = name; } - - void setDialog(TextDialog *const dialog) - { mDialog = dialog; } - - void setType(const int type) - { mType = type; } - - private: - std::string mNick; - TextDialog *mDialog; - int mType; -}; - /** * Window showing popup menu. */ diff --git a/src/listeners/playerlistener.cpp b/src/listeners/playerlistener.cpp new file mode 100644 index 000000000..d50aa20d9 --- /dev/null +++ b/src/listeners/playerlistener.cpp @@ -0,0 +1,51 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-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/playerlistener.h" + +#include "actormanager.h" + +#include "being/being.h" + +#include "gui/windows/textdialog.h" + +#include "debug.h" + +PlayerListener::PlayerListener() : + ActionListener(), + mNick(), + mDialog(nullptr), + mType(static_cast(ActorType::UNKNOWN)) +{ +} + +void PlayerListener::action(const ActionEvent &event) +{ + if (event.getId() == "ok" && !mNick.empty() && mDialog) + { + std::string comment = mDialog->getText(); + Being *const being = actorManager->findBeingByName( + mNick, static_cast(mType)); + if (being) + being->setComment(comment); + Being::saveComment(mNick, comment, mType); + } + mDialog = nullptr; +} diff --git a/src/listeners/playerlistener.h b/src/listeners/playerlistener.h new file mode 100644 index 000000000..85623fbd5 --- /dev/null +++ b/src/listeners/playerlistener.h @@ -0,0 +1,56 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-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_PLAYERLISTENER_H +#define LISTENERS_PLAYERLISTENER_H + +#include "listeners/actionlistener.h" + +#include + +#include "localconsts.h" + +class TextDialog; + +class PlayerListener : public ActionListener +{ + public: + PlayerListener(); + + A_DELETE_COPY(PlayerListener) + + void action(const ActionEvent &event) override final; + + void setNick(const std::string &name) + { mNick = name; } + + void setDialog(TextDialog *const dialog) + { mDialog = dialog; } + + void setType(const int type) + { mType = type; } + + private: + std::string mNick; + TextDialog *mDialog; + int mType; +}; + +#endif // LISTENERS_PLAYERLISTENER_H -- cgit v1.2.3-60-g2f50