From d21513f3d6c7b5263ee50f1969d89293b2041b59 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 15 Jul 2012 13:12:01 +0300 Subject: Remove emote popup window. --- src/gui/emotepopup.h | 122 --------------------------------------------------- 1 file changed, 122 deletions(-) delete mode 100644 src/gui/emotepopup.h (limited to 'src/gui/emotepopup.h') diff --git a/src/gui/emotepopup.h b/src/gui/emotepopup.h deleted file mode 100644 index 453c4e669..000000000 --- a/src/gui/emotepopup.h +++ /dev/null @@ -1,122 +0,0 @@ -/* - * Extended support for activating emotes - * Copyright (C) 2009 Aethyra Development Team - * Copyright (C) 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 . - */ - -#ifndef EMOTEPOPUP_H -#define EMOTEPOPUP_H - -#include "gui/widgets/popup.h" - -#include - -#include -#include - -class AnimatedSprite; -class Image; - -namespace gcn -{ - class SelectionListener; -} - -/** - * An emote popup. Used to activate emotes and assign them to shortcuts. - * - * \ingroup GUI - */ -class EmotePopup : public Popup -{ - public: - /** - * Constructor. Initializes the graphic. - */ - EmotePopup(); - - virtual ~EmotePopup(); - - /** - * Draws the emotes. - */ - void draw(gcn::Graphics *graphics); - - void mousePressed(gcn::MouseEvent &event); - void mouseMoved(gcn::MouseEvent &event); - - /** - * Returns the selected emote. - */ - int getSelectedEmote() const; - - /** - * Adds a listener to the list that's notified each time a change to - * the selection occurs. - */ - void addSelectionListener(gcn::SelectionListener *listener) - { mListeners.push_back(listener); } - - /** - * Removes a listener from the list that's notified each time a change - * to the selection occurs. - */ - void removeSelectionListener(gcn::SelectionListener *listener) - { mListeners.remove(listener); } - - private: - /** - * Sets the index of the currently selected emote. - */ - void setSelectedEmoteIndex(int index); - - /** - * Returns the index at the specified coordinates. Returns -1 when - * there is no valid index. - */ - int getIndexAt(int x, int y) const; - - /** - * Determine and set the size of the container. - */ - void recalculateSize(); - - /** - * Sends out selection events to the list of selection listeners. - */ - void distributeValueChangedEvent(); - - std::vector mEmotes; - Image *mSelectionImage; - int mSelectedEmoteIndex; - int mHoveredEmoteIndex; - - int mRowCount; - int mColumnCount; - - typedef std::list Listeners; - - Listeners mListeners; - - static const int gridWidth; - static const int gridHeight; -}; - -#endif -- cgit v1.2.3-70-g09d2