diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-14 15:36:21 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-14 15:36:21 +0300 |
commit | 5781d238e97689be482c5ac691143ce35e3e278e (patch) | |
tree | c5e362c2e7ebbef874dadb6a2d22a1733d16efdd /src/listeners/playerlistener.h | |
parent | 653087c6ffd0f5f4245f6f3a2e18d4e7129070c0 (diff) | |
download | manaverse-5781d238e97689be482c5ac691143ce35e3e278e.tar.gz manaverse-5781d238e97689be482c5ac691143ce35e3e278e.tar.bz2 manaverse-5781d238e97689be482c5ac691143ce35e3e278e.tar.xz manaverse-5781d238e97689be482c5ac691143ce35e3e278e.zip |
Move playerlistener into separate file.
Diffstat (limited to 'src/listeners/playerlistener.h')
-rw-r--r-- | src/listeners/playerlistener.h | 56 |
1 files changed, 56 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>. + */ + +#ifndef LISTENERS_PLAYERLISTENER_H +#define LISTENERS_PLAYERLISTENER_H + +#include "listeners/actionlistener.h" + +#include <string> + +#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 |