From 0b861120e4496f64c8014c7f7b3d0a8938cc7d51 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 14 Jan 2015 18:33:59 +0300 Subject: Add support for #gm channel for gm tab. In legacy servers it will use @wgm as before. --- src/gui/chatconsts.h | 1 + src/gui/widgets/tabs/chat/gmtab.cpp | 8 ++++++-- src/gui/windows/chatwindow.cpp | 7 +++++++ 3 files changed, 14 insertions(+), 2 deletions(-) (limited to 'src/gui') diff --git a/src/gui/chatconsts.h b/src/gui/chatconsts.h index daa7a3be8..8028962c6 100644 --- a/src/gui/chatconsts.h +++ b/src/gui/chatconsts.h @@ -26,6 +26,7 @@ #include const std::string GENERAL_CHANNEL = ""; +const std::string GM_CHANNEL = "#gm"; const std::string TRADE_CHANNEL = "#trade"; #endif // GUI_CHATCONSTS_H diff --git a/src/gui/widgets/tabs/chat/gmtab.cpp b/src/gui/widgets/tabs/chat/gmtab.cpp index f54e941e4..a6bca72ed 100644 --- a/src/gui/widgets/tabs/chat/gmtab.cpp +++ b/src/gui/widgets/tabs/chat/gmtab.cpp @@ -20,6 +20,10 @@ #include "gui/widgets/tabs/chat/gmtab.h" +#include "gui/windows/chatwindow.h" + +#include "net/chathandler.h" + #include "utils/gettext.h" #include "debug.h" @@ -28,7 +32,7 @@ GmTab *gmChatTab = nullptr; GmTab::GmTab(const Widget2 *const widget) : // TRANSLATORS: gb tab name - ChatTab(widget, _("GM"), "", "#GM", ChatTabType::GM) + ChatTab(widget, _("GM"), "", "#gm", ChatTabType::GM) { setTabColors(Theme::GM_CHAT_TAB); } @@ -39,7 +43,7 @@ GmTab::~GmTab() void GmTab::handleInput(const std::string &msg) { - ChatTab::handleInput("@wgm " + msg); + chatHandler->channelMessage(mChannelName, ChatWindow::doReplace(msg)); } void GmTab::handleCommand(const std::string &msg A_UNUSED) diff --git a/src/gui/windows/chatwindow.cpp b/src/gui/windows/chatwindow.cpp index 1f3b165c5..7c32a6298 100644 --- a/src/gui/windows/chatwindow.cpp +++ b/src/gui/windows/chatwindow.cpp @@ -61,6 +61,7 @@ #include "gui/widgets/tabs/chat/battletab.h" #include "gui/widgets/tabs/chat/channeltab.h" +#include "gui/widgets/tabs/chat/gmtab.h" #include "gui/widgets/tabs/chat/langtab.h" #include "gui/widgets/tabs/chat/tradetab.h" #include "gui/widgets/tabs/chat/whispertab.h" @@ -1207,6 +1208,12 @@ ChatTab *ChatWindow::addSpecialChannelTab(const std::string &name, } ret = tradeChatTab; } + else if (name == GM_CHANNEL) + { + if (!gmChatTab) + gmChatTab = new GmTab(chatWindow); + ret = gmChatTab; + } if (switchTo) mChatTabs->setSelectedTab(ret); -- cgit v1.2.3-60-g2f50