65 lines
2.1 KiB
C++
65 lines
2.1 KiB
C++
#ifndef USER_CONTEXT_MENU_H
|
|
#define USER_CONTEXT_MENU_H
|
|
|
|
#include "user_level.h"
|
|
|
|
#include <QObject>
|
|
|
|
class QAction;
|
|
class TabSupervisor;
|
|
class TabGame;
|
|
class QPoint;
|
|
class CommandContainer;
|
|
class Response;
|
|
class AbstractClient;
|
|
class ServerInfo_User;
|
|
|
|
class UserContextMenu : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
AbstractClient *client;
|
|
const TabSupervisor *tabSupervisor;
|
|
TabGame *game;
|
|
|
|
QAction *aUserName;
|
|
QAction *aDetails;
|
|
QAction *aShowGames;
|
|
QAction *aChat;
|
|
QAction *aAddToBuddyList, *aRemoveFromBuddyList;
|
|
QAction *aAddToIgnoreList, *aRemoveFromIgnoreList;
|
|
QAction *aKick;
|
|
QAction *aBan, *aBanHistory;
|
|
QAction *aPromoteToMod, *aDemoteFromMod;
|
|
QAction *aPromoteToJudge, *aDemoteFromJudge;
|
|
QAction *aWarnUser, *aWarnHistory;
|
|
signals:
|
|
void openMessageDialog(const QString &userName, bool focus);
|
|
private slots:
|
|
void banUser_processUserInfoResponse(const Response &resp);
|
|
void warnUser_processGetWarningsListResponse(const Response &r);
|
|
void warnUser_processUserInfoResponse(const Response &resp);
|
|
void banUserHistory_processResponse(const Response &resp);
|
|
void warnUserHistory_processResponse(const Response &resp);
|
|
void adjustMod_processUserResponse(const Response &resp, const CommandContainer &commandContainer);
|
|
void banUser_dialogFinished();
|
|
void warnUser_dialogFinished();
|
|
void gamesOfUserReceived(const Response &resp, const CommandContainer &commandContainer);
|
|
|
|
public:
|
|
UserContextMenu(const TabSupervisor *_tabSupervisor, QWidget *_parent, TabGame *_game = 0);
|
|
void retranslateUi();
|
|
void showContextMenu(const QPoint &pos,
|
|
const QString &userName,
|
|
UserLevelFlags userLevel,
|
|
bool online = true,
|
|
int playerId = -1);
|
|
void showContextMenu(const QPoint &pos,
|
|
const QString &userName,
|
|
UserLevelFlags userLevel,
|
|
bool online,
|
|
int playerId,
|
|
const QString &deckHash);
|
|
};
|
|
|
|
#endif
|