From 25d77892d72d455f8a89372687db45aefbc61cec Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 30 Sep 2013 14:03:48 +0300 Subject: move windows classes to windows directory. --- src/gui/socialwindow.h | 170 ------------------------------------------------- 1 file changed, 170 deletions(-) delete mode 100644 src/gui/socialwindow.h (limited to 'src/gui/socialwindow.h') diff --git a/src/gui/socialwindow.h b/src/gui/socialwindow.h deleted file mode 100644 index 31d1b676a..000000000 --- a/src/gui/socialwindow.h +++ /dev/null @@ -1,170 +0,0 @@ -/* - * The ManaPlus Client - * Copyright (C) 2010 The Mana Developers - * Copyright (C) 2011-2013 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_SOCIALWINDOW_H -#define GUI_SOCIALWINDOW_H - -#include "gui/widgets/window.h" - -#include - -#include -#include - -class Button; -class ConfirmDialog; -class CreatePopup; -class Guild; -class Label; -class Map; -class Party; -class SocialTab; -class TabbedArea; -class TextDialog; - -/** - * Party window. - * - * \ingroup Interface - */ -class SocialWindow final : public Window, private gcn::ActionListener -{ -public: - SocialWindow(); - - A_DELETE_COPY(SocialWindow) - - ~SocialWindow(); - - bool addTab(Guild *const guild); - - bool removeTab(Guild *const guild); - - bool addTab(Party *const party); - - bool removeTab(Party *const party); - - void action(const gcn::ActionEvent &event) override; - - void showGuildInvite(const std::string &guildName, const int guildId, - const std::string &inviterName); - - void showGuildCreate(); - - void showPartyInvite(const std::string &partyName, - const std::string &inviter = ""); - - void showPartyCreate(); - - void updateActiveList(); - - void updateAvatar(const std::string &name); - - void resetDamage(const std::string &name); - - void slowLogic(); - - void updatePortals(); - - void updatePortalNames(); - - void updateParty(); - - int getPortalIndex(const int x, const int y) A_WARN_UNUSED; - - void addPortal(const int x, const int y); - - void removePortal(const int x, const int y); - - void nextTab(); - - void prevTab(); - - const Map* getMap() const A_WARN_UNUSED - { return mMap; } - - void setMap(Map *const map) - { mMap = map; mProcessedPortals = false; } - - bool getProcessedPortals() const A_WARN_UNUSED - { return mProcessedPortals; } - - void setProcessedPortals(const bool n) - { mProcessedPortals = n; } - - void selectPortal(const unsigned num); - - void updateAttackFilter(); - - void updatePickupFilter(); - - void widgetResized(const gcn::Event &event) override; - - void setCounter(const SocialTab *const tab, const std::string &str); - - void updateGuildCounter(const int online = 0, const int total = 0); - -#ifdef USE_PROFILER - void logicChildren(); -#endif - -protected: - friend class SocialTab; - - void updateButtons(); - - int mGuildInvited; - ConfirmDialog *mGuildAcceptDialog; - TextDialog *mGuildCreateDialog; - - std::string mPartyInviter; - ConfirmDialog *mPartyAcceptDialog; - TextDialog *mPartyCreateDialog; - - typedef std::map GuildMap; - GuildMap mGuilds; - - typedef std::map PartyMap; - PartyMap mParties; - - SocialTab *mAttackFilter; - SocialTab *mPickupFilter; - SocialTab *mPlayers; - SocialTab *mNavigation; - SocialTab *mFriends; - - CreatePopup *mCreatePopup; - - Button *mCreateButton; - Button *mInviteButton; - Button *mLeaveButton; - Label *mCountLabel; - TabbedArea *mTabs; - Map *mMap; - - int mLastUpdateTime; - bool mNeedUpdate; - bool mProcessedPortals; -}; - -extern SocialWindow *socialWindow; - -#endif // GUI_SOCIALWINDOW_H -- cgit v1.2.3-70-g09d2