From c8b1e6e5455dd0c9c51b6b212478ed1e5aa1af4c Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 18 Aug 2016 17:27:52 +0300 Subject: Remove createpartypopup class. --- src/CMakeLists.txt | 1 - src/Makefile.am | 1 - src/gui/popups/createpartypopup.h | 98 --------------------------------------- src/gui/windows/socialwindow.cpp | 4 -- src/gui/windows/socialwindow.h | 3 -- 5 files changed, 107 deletions(-) delete mode 100644 src/gui/popups/createpartypopup.h diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 81176024e..a5ddd9766 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -336,7 +336,6 @@ SET(SRCS gui/widgets/windowcontainer.h gui/popups/beingpopup.cpp gui/popups/beingpopup.h - gui/popups/createpartypopup.h gui/windows/buydialog.cpp gui/windows/buydialog.h gui/windows/buyselldialog.cpp diff --git a/src/Makefile.am b/src/Makefile.am index 0c002e12e..957ac0b57 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -942,7 +942,6 @@ manaplus_SOURCES += main.cpp \ gui/popups/speechbubble.h \ gui/popups/beingpopup.cpp \ gui/popups/beingpopup.h \ - gui/popups/createpartypopup.h \ gui/widgets/itemcontainer.cpp \ gui/widgets/itemcontainer.h \ gui/widgets/tabs/chat/battletab.cpp \ diff --git a/src/gui/popups/createpartypopup.h b/src/gui/popups/createpartypopup.h deleted file mode 100644 index dba59f142..000000000 --- a/src/gui/popups/createpartypopup.h +++ /dev/null @@ -1,98 +0,0 @@ -/* - * The ManaPlus Client - * Copyright (C) 2010 The Mana Developers - * Copyright (C) 2011-2016 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 GUI_POPUPS_CREATEPARTYPOPUP_H -#define GUI_POPUPS_CREATEPARTYPOPUP_H - -#include "gui/widgets/browserbox.h" -#include "gui/widgets/linkhandler.h" -#include "gui/widgets/popup.h" -#include "gui/windows/socialwindow.h" - -#include "utils/gettext.h" -#include "utils/stringutils.h" - -#include "localconsts.h" - -class CreatePartyPopup final : public Popup, - public LinkHandler -{ - public: - CreatePartyPopup() : - Popup("SocialCreatePartyPopup"), - LinkHandler(), - mBrowserBox(new BrowserBox(this, BrowserBox::AUTO_SIZE, true, - "popupbrowserbox.xml")) - { - mBrowserBox->setPosition(4, 4); - mBrowserBox->setOpaque(false); - mBrowserBox->setLinkHandler(this); - - // TRANSLATORS: party popup item - mBrowserBox->addRow(strprintf("@@party|%s@@", _("Create Party"))); - mBrowserBox->addRow("##3---"); - // TRANSLATORS: party popup item - mBrowserBox->addRow(strprintf("@@cancel|%s@@", _("Cancel"))); - } - - void postInit() override final - { - Popup::postInit(); - add(mBrowserBox); - setContentSize(mBrowserBox->getWidth() + 8, - mBrowserBox->getHeight() + 8); - } - - A_DELETE_COPY(CreatePartyPopup) - - void handleLink(const std::string &link, - MouseEvent *event A_UNUSED) override final - { - if (link == "guild" && socialWindow) - { - socialWindow->showGuildCreate(); - } - else if (link == "party" && socialWindow) - { - socialWindow->showPartyCreate(); - } - - setVisible(Visible_false); - } - - void show(Widget *parent) - { - if (!parent) - return; - - int x, y; - parent->getAbsolutePosition(x, y); - y += parent->getHeight(); - setPosition(x, y); - setVisible(Visible_true); - requestMoveToTop(); - } - - private: - BrowserBox* mBrowserBox; -}; - -#endif // GUI_POPUPS_CREATEPARTYPOPUP_H diff --git a/src/gui/windows/socialwindow.cpp b/src/gui/windows/socialwindow.cpp index 647fceb23..ad9c34e8c 100644 --- a/src/gui/windows/socialwindow.cpp +++ b/src/gui/windows/socialwindow.cpp @@ -37,8 +37,6 @@ #include "gui/widgets/tabs/socialpickuptab.h" #include "gui/widgets/tabs/socialplayerstab.h" -#include "gui/popups/createpartypopup.h" - #include "net/serverfeatures.h" #ifdef TMWA_SUPPORT @@ -72,7 +70,6 @@ SocialWindow::SocialWindow() : // TRANSLATORS: here F is title for friends tab in social window mFriends(new SocialFriendsTab(this, _("F"), getOptionBool("showtabbackground"))), - mCreatePopup(CREATEWIDGETR0(CreatePartyPopup)), // TRANSLATORS: social window button mCreateButton(new Button(this, _("Create"), "create", this)), mCountLabel(new Label(this, "1000 / 1000")), @@ -167,7 +164,6 @@ SocialWindow::~SocialWindow() mPartyInviter.clear(); } - delete2(mCreatePopup); delete2(mPlayers); delete2(mNavigation); delete2(mAttackFilter); diff --git a/src/gui/windows/socialwindow.h b/src/gui/windows/socialwindow.h index 676ede11d..89cf673da 100644 --- a/src/gui/windows/socialwindow.h +++ b/src/gui/windows/socialwindow.h @@ -29,7 +29,6 @@ class Button; class ConfirmDialog; -class CreatePartyPopup; class Guild; class Label; class Map; @@ -157,8 +156,6 @@ class SocialWindow final : public Window, SocialTab *mNavigation A_NONNULLPOINTER; SocialTab *mFriends A_NONNULLPOINTER; - CreatePartyPopup *mCreatePopup A_NONNULLPOINTER; - Button *mCreateButton A_NONNULLPOINTER; Label *mCountLabel A_NONNULLPOINTER; TabbedArea *mTabs A_NONNULLPOINTER; -- cgit v1.2.3-60-g2f50