/* * The ManaPlus Client * Copyright (C) 2004-2009 The Mana World Development Team * Copyright (C) 2009-2010 The Mana Developers * Copyright (C) 2011-2012 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 . */ #include "gui/windowmenu.h" #include "emoteshortcut.h" #include "graphics.h" #include "inputmanager.h" #include "keyboardconfig.h" #include "gui/didyouknowwindow.h" #include "gui/skilldialog.h" #ifdef MANASERV_SUPPORT #include "gui/specialswindow.h" #endif #include "gui/textpopup.h" #include "gui/viewport.h" #include "net/net.h" #include "net/playerhandler.h" #include "utils/gettext.h" #include #include "debug.h" extern Window *emoteShortcutWindow; extern Window *equipmentWindow; extern Window *inventoryWindow; extern Window *itemShortcutWindow; extern Window *dropShortcutWindow; extern Window *setupWindow; extern Window *statusWindow; extern Window *whoIsOnline; extern Window *killStats; extern Window *spellShortcutWindow; extern Window *botCheckerWindow; extern Window *socialWindow; extern Window *questsWindow; WindowMenu::WindowMenu(const Widget2 *const widget) : Container(widget), gcn::ActionListener(), gcn::SelectionListener(), gcn::MouseListener(), mTextPopup(new TextPopup), mHaveMouse(false), mAutoHide(1) { int x = 0; int h = 0; setFocusable(false); addButton(N_("ONL"), _("Who is online"), x, h, Input::KEY_NO_VALUE); addButton(N_("QE"), _("Quests"), x, h, Input::KEY_WINDOW_QUESTS); addButton(N_("BC"), _("Bot checker"), x, h, Input::KEY_WINDOW_BOT_CHECKER, false); addButton(N_("KS"), _("Kill stats"), x, h, Input::KEY_WINDOW_KILLS); addButton(":-)", _("Smilies"), x, h, Input::KEY_WINDOW_EMOTE_SHORTCUT); addButton(N_("STA"), _("Status"), x, h, Input::KEY_WINDOW_STATUS); addButton(N_("EQU"), _("Equipment"), x, h, Input::KEY_WINDOW_EQUIPMENT); addButton(N_("INV"), _("Inventory"), x, h, Input::KEY_WINDOW_INVENTORY); if (skillDialog->hasSkills()) { addButton(N_("SKI"), _("Skills"), x, h, Input::KEY_WINDOW_SKILL); } #ifdef MANASERV_SUPPORT if (Net::getNetworkType() == ServerInfo::MANASERV) { addButton(N_("SPE"), _("Specials"), x, h, Input::KEY_NO_VALUE); } #endif addButton(N_("SOC"), _("Social"), x, h, Input::KEY_WINDOW_SOCIAL); addButton(N_("SH"), _("Shortcuts"), x, h, Input::KEY_WINDOW_SHORTCUT); addButton(N_("SP"), _("Spells"), x, h, Input::KEY_WINDOW_SPELLS); addButton(N_("DR"), _("Drop"), x, h, Input::KEY_WINDOW_DROP); addButton(N_("YK"), _("Did you know"), x, h, Input::KEY_WINDOW_DIDYOUKNOW); addButton(N_("SET"), _("Setup"), x, h, Input::KEY_WINDOW_SETUP); if (mainGraphics) { setDimension(gcn::Rectangle(mainGraphics->mWidth - x - 3, 3, x - 3, h)); } loadButtons(); addMouseListener(this); setVisible(true); config.addListener("autohideButtons", this); mAutoHide = config.getIntValue("autohideButtons"); } WindowMenu::~WindowMenu() { config.removeListener("autohideButtons", this); delete mTextPopup; mTextPopup = nullptr; mButtonNames.clear(); for (std::vector ::iterator it = mButtons.begin(), it_end = mButtons.end(); it != it_end; ++it) { Button *btn = dynamic_cast(*it); if (!btn) continue; if (!btn->isVisible()) { delete btn; } } } void WindowMenu::action(const gcn::ActionEvent &event) { Window *window = nullptr; if (event.getId() == ":-)") { window = emoteShortcutWindow; } else if (event.getId() == "STA") { window = statusWindow; } else if (event.getId() == "EQU") { window = equipmentWindow; } else if (event.getId() == "INV") { window = inventoryWindow; } else if (event.getId() == "SKI") { window = skillDialog; } #ifdef MANASERV_SUPPORT else if (event.getId() == "SPE") { window = specialsWindow; } #endif else if (event.getId() == "SH") { window = itemShortcutWindow; } else if (event.getId() == "SOC") { window = socialWindow; } else if (event.getId() == "DR") { window = dropShortcutWindow; } else if (event.getId() == "SET") { window = setupWindow; } else if (event.getId() == "ONL") { window = whoIsOnline; } else if (event.getId() == "KS") { window = killStats; } else if (event.getId() == "BC") { window = botCheckerWindow; } else if (event.getId() == "SP") { window = spellShortcutWindow; } else if (event.getId() == "YK") { window = didYouKnowWindow; } else if (event.getId() == "QE") { window = questsWindow; } if (window) { window->setVisible(!window->isVisible()); if (window->isVisible()) window->requestMoveToTop(); } } //void WindowMenu::valueChanged(const gcn::SelectionEvent &event) //{ //} void WindowMenu::addButton(const char *const text, const std::string &description, int &x, int &h, const int key, const bool visible) { Button *const btn = new Button(gettext(text), text, this); btn->setPosition(x, 0); btn->setDescription(description); btn->setTag(key); add(btn); btn->setFocusable(false); if (!visible) { btn->setVisible(false); } else { x += btn->getWidth() + 3; h = btn->getHeight(); } mButtons.push_back(btn); mButtonNames[text] = btn; } void WindowMenu::mousePressed(gcn::MouseEvent &event) { if (!viewport) return; if (event.getButton() == gcn::MouseEvent::RIGHT) { Button *const btn = dynamic_cast(event.getSource()); if (!btn) return; if (viewport) { viewport->showPopup(getX() + event.getX(), getY() + event.getY(), btn); } } } void WindowMenu::mouseMoved(gcn::MouseEvent &event) { mHaveMouse = true; if (!mTextPopup) return; if (event.getSource() == this) { mTextPopup->hide(); return; } const Button *const btn = dynamic_cast( event.getSource()); if (!btn) { mTextPopup->hide(); return; } const int x = event.getX(); const int y = event.getY(); const int key = btn->getTag(); if (key != Input::KEY_NO_VALUE) { mTextPopup->show(x + getX(), y + getY(), btn->getDescription(), strprintf(_("Key: %s"), inputManager.getKeyValueString( key).c_str())); } else { mTextPopup->show(x + getX(), y + getY(), btn->getDescription()); } } void WindowMenu::mouseExited(gcn::MouseEvent& mouseEvent A_UNUSED) { mHaveMouse = false; if (!mTextPopup) return; mTextPopup->hide(); } void WindowMenu::showButton(const std::string &name, const bool visible) { Button *const btn = dynamic_cast