summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-01-14 18:33:59 +0300
committerAndrei Karas <akaras@inbox.ru>2015-01-14 18:33:59 +0300
commit0b861120e4496f64c8014c7f7b3d0a8938cc7d51 (patch)
tree095bc7b9b9d50fc56b1fd3b2b19696d17780578e /src/gui
parentf86221f5fe1bc54b3e643169d510b01f991e5f04 (diff)
downloadplus-0b861120e4496f64c8014c7f7b3d0a8938cc7d51.tar.gz
plus-0b861120e4496f64c8014c7f7b3d0a8938cc7d51.tar.bz2
plus-0b861120e4496f64c8014c7f7b3d0a8938cc7d51.tar.xz
plus-0b861120e4496f64c8014c7f7b3d0a8938cc7d51.zip
Add support for #gm channel for gm tab.
In legacy servers it will use @wgm as before.
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/chatconsts.h1
-rw-r--r--src/gui/widgets/tabs/chat/gmtab.cpp8
-rw-r--r--src/gui/windows/chatwindow.cpp7
3 files changed, 14 insertions, 2 deletions
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 <string>
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);