From 653087c6ffd0f5f4245f6f3a2e18d4e7129070c0 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 14 May 2014 15:17:42 +0300 Subject: Move renamelistener into separate file. --- src/gui/popups/popupmenu.cpp | 48 -------------------------------------------- src/gui/popups/popupmenu.h | 21 +------------------ 2 files changed, 1 insertion(+), 68 deletions(-) (limited to 'src/gui') diff --git a/src/gui/popups/popupmenu.cpp b/src/gui/popups/popupmenu.cpp index 524758719..c284b92a0 100644 --- a/src/gui/popups/popupmenu.cpp +++ b/src/gui/popups/popupmenu.cpp @@ -2901,54 +2901,6 @@ void PopupMenu::showGMPopup() showPopup(getX(), getY()); } -RenameListener::RenameListener() : - ActionListener(), - mMapItemX(0), - mMapItemY(0), - mDialog(nullptr) -{ -} - -void RenameListener::setMapItem(const MapItem *const mapItem) -{ - if (mapItem) - { - mMapItemX = mapItem->getX(); - mMapItemY = mapItem->getY(); - } - else - { - mMapItemX = 0; - mMapItemY = 0; - } -} - -void RenameListener::action(const ActionEvent &event) -{ - if (event.getId() == "ok" && viewport && mDialog) - { - Map *const map = viewport->getMap(); - if (!map) - return; - - SpecialLayer *const sl = map->getSpecialLayer(); - MapItem *item = nullptr; - if (sl) - { - item = sl->getTile(mMapItemX, mMapItemY); - if (item) - item->setComment(mDialog->getText()); - } - item = map->findPortalXY(mMapItemX, mMapItemY); - if (item) - item->setComment(mDialog->getText()); - - if (socialWindow) - socialWindow->updatePortalNames(); - } - mDialog = nullptr; -} - PlayerListener::PlayerListener() : ActionListener(), mNick(), diff --git a/src/gui/popups/popupmenu.h b/src/gui/popups/popupmenu.h index 94db12343..fbbb69cd0 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/renamelistener.h" #include "localconsts.h" @@ -46,26 +47,6 @@ class TextField; class ProgressBar; class Window; -class RenameListener final : public ActionListener -{ - public: - RenameListener(); - - A_DELETE_COPY(RenameListener) - - void action(const ActionEvent &event) override final; - - void setMapItem(const MapItem *const mapItem); - - void setDialog(TextDialog *dialog) - { mDialog = dialog; } - - private: - int mMapItemX; - int mMapItemY; - TextDialog *mDialog; -}; - class PlayerListener : public ActionListener { public: -- cgit v1.2.3-70-g09d2