citra_qt: Add a moderation dialog

The dialog currently supports accessing the ban list and removing entries from it.
This commit is contained in:
zhupengfei 2018-11-24 16:22:14 +08:00
parent 7acd2664dd
commit 6359b6094c
No known key found for this signature in database
GPG key ID: DD129E108BD09378
9 changed files with 273 additions and 0 deletions

View file

@ -66,6 +66,7 @@ private:
QAction* show_room;
std::shared_ptr<Core::AnnounceMultiplayerSession> announce_multiplayer_session;
Network::RoomMember::State current_state = Network::RoomMember::State::Uninitialized;
bool has_mod_perms = false;
Network::RoomMember::CallbackHandle<Network::RoomMember::State> state_callback_handle;
Network::RoomMember::CallbackHandle<Network::RoomMember::Error> error_callback_handle;
};