From 99df456164cbb994e2d789c25b193074476a97a2 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 20 May 2014 21:55:56 +0300 Subject: Move requesttradelistener into separate file. --- src/listeners/requesttradelistener.h | 51 ++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/listeners/requesttradelistener.h (limited to 'src/listeners') diff --git a/src/listeners/requesttradelistener.h b/src/listeners/requesttradelistener.h new file mode 100644 index 000000000..54cbce8de --- /dev/null +++ b/src/listeners/requesttradelistener.h @@ -0,0 +1,51 @@ +/* + * The ManaPlus Client + * Copyright (C) 2004-2009 The Mana World Development Team + * Copyright (C) 2009-2010 The Mana Developers + * 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 "being/playerrelations.h" + +#include "gui/windows/confirmdialog.h" + +#include "net/tradehandler.h" + +#include "listeners/actionlistener.h" + +#include + +#include "localconsts.h" + +extern std::string tradePartnerName; +extern ConfirmDialog *confirmDlg; + +/** + * Listener for request trade dialogs + */ +struct RequestTradeListener final : public ActionListener +{ + void action(const ActionEvent &event) + { + confirmDlg = nullptr; + const std::string &eventId = event.getId(); + if (eventId == "ignore") + player_relations.ignoreTrade(tradePartnerName); + Net::getTradeHandler()->respond(eventId == "yes"); + } +}; -- cgit v1.2.3-60-g2f50