blob: b8ed73655c05e2a8a7aa241dff2c5ae99266e29b (
plain) (
tree)
|
|
/*
* 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/actionevent.hpp>
#include <guichan/actionlistener.hpp>
#include <string>
#include <map>
class AttackTab;
class Button;
class ConfirmDialog;
class CreatePopup;
class Guild;
class Map;
class NavigateTab;
class Party;
class SocialTab;
class Tab;
class TabbedArea;
class TextDialog;
class PlayersTab;
/**
* 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();
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;
#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;
TabbedArea *mTabs;
Map *mMap;
int mLastUpdateTime;
bool mNeedUpdate;
bool mProcessedPortals;
};
extern SocialWindow *socialWindow;
#endif // GUI_SOCIALWINDOW_H
|