summaryrefslogtreecommitdiff
path: root/src/gui/widgets/tabs/chat
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-02-10 01:25:51 +0300
committerAndrei Karas <akaras@inbox.ru>2018-02-11 04:28:43 +0300
commit219afd10cf1dc8f7e75273706c2de3a06305e637 (patch)
tree5e1be1c457016104c5ea9bbf0d07ee2f491ef9d8 /src/gui/widgets/tabs/chat
parentbdf970bde1ce41aa364fc0065ac0cd23e37ec29f (diff)
downloadplus-219afd10cf1dc8f7e75273706c2de3a06305e637.tar.gz
plus-219afd10cf1dc8f7e75273706c2de3a06305e637.tar.bz2
plus-219afd10cf1dc8f7e75273706c2de3a06305e637.tar.xz
plus-219afd10cf1dc8f7e75273706c2de3a06305e637.zip
Add basic support for clans.
Diffstat (limited to 'src/gui/widgets/tabs/chat')
-rw-r--r--src/gui/widgets/tabs/chat/clantab.cpp56
-rw-r--r--src/gui/widgets/tabs/chat/clantab.h46
2 files changed, 102 insertions, 0 deletions
diff --git a/src/gui/widgets/tabs/chat/clantab.cpp b/src/gui/widgets/tabs/chat/clantab.cpp
new file mode 100644
index 000000000..0f34d30c3
--- /dev/null
+++ b/src/gui/widgets/tabs/chat/clantab.cpp
@@ -0,0 +1,56 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2011-2018 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/>.
+ */
+
+#include "gui/widgets/tabs/chat/clantab.h"
+
+#include "soundmanager.h"
+
+#include "const/sound.h"
+
+#include "gui/windows/chatwindow.h"
+
+#include "net/clanhandler.h"
+
+#include "utils/gettext.h"
+
+#include "debug.h"
+
+ClanTab *clanTab = nullptr;
+
+ClanTab::ClanTab(const Widget2 *const widget) :
+ // TRANSLATORS: clan chat tab name
+ ChatTab(widget, _("Clan"), "", "#Clan", ChatTabType::CLAN)
+{
+ setTabColors(ThemeColorId::CLAN_CHAT_TAB);
+}
+
+ClanTab::~ClanTab()
+{
+}
+
+void ClanTab::handleInput(const std::string &msg)
+{
+ clanHandler->chat(ChatWindow::doReplace(msg));
+}
+
+void ClanTab::playNewMessageSound() const
+{
+ soundManager.playGuiSound(SOUND_GUILD);
+}
diff --git a/src/gui/widgets/tabs/chat/clantab.h b/src/gui/widgets/tabs/chat/clantab.h
new file mode 100644
index 000000000..0b6b1df13
--- /dev/null
+++ b/src/gui/widgets/tabs/chat/clantab.h
@@ -0,0 +1,46 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2011-2018 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_WIDGETS_TABS_CHAT_CLANTAB_H
+#define GUI_WIDGETS_TABS_CHAT_CLANTAB_H
+
+#include "gui/widgets/tabs/chat/chattab.h"
+
+/**
+ * A tab for a clan chat channel.
+ */
+class ClanTab final : public ChatTab
+{
+ public:
+ explicit ClanTab(const Widget2 *const widget);
+
+ A_DELETE_COPY(ClanTab)
+
+ ~ClanTab() override final;
+
+ void playNewMessageSound() const override final;
+
+ protected:
+ void handleInput(const std::string &msg) override final;
+};
+
+extern ClanTab *clanTab;
+
+#endif // GUI_WIDGETS_TABS_CHAT_CLANTAB_H