summaryrefslogtreecommitdiff
path: root/src/gui/socialwindow.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-09-30 14:03:48 +0300
committerAndrei Karas <akaras@inbox.ru>2013-09-30 14:03:48 +0300
commit25d77892d72d455f8a89372687db45aefbc61cec (patch)
treede03cb1af09eebf6db853a6585b953884bcca3b2 /src/gui/socialwindow.h
parent05c22dd1a69fe90da67188c74a6995ee3747e937 (diff)
downloadplus-25d77892d72d455f8a89372687db45aefbc61cec.tar.gz
plus-25d77892d72d455f8a89372687db45aefbc61cec.tar.bz2
plus-25d77892d72d455f8a89372687db45aefbc61cec.tar.xz
plus-25d77892d72d455f8a89372687db45aefbc61cec.zip
move windows classes to windows directory.
Diffstat (limited to 'src/gui/socialwindow.h')
-rw-r--r--src/gui/socialwindow.h170
1 files changed, 0 insertions, 170 deletions
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 <http://www.gnu.org/licenses/>.
- */
-
-#ifndef GUI_SOCIALWINDOW_H
-#define GUI_SOCIALWINDOW_H
-
-#include "gui/widgets/window.h"
-
-#include <guichan/actionlistener.hpp>
-
-#include <string>
-#include <map>
-
-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<Guild*, SocialTab*> GuildMap;
- GuildMap mGuilds;
-
- typedef std::map<Party*, SocialTab*> 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