~ubuntu-branches/ubuntu/trusty/manaplus/trusty-proposed

« back to all changes in this revision

Viewing changes to src/gui/widgets/emotepage.h

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2013-08-13 10:18:49 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20130813101849-gna1clq5vxvb8p5f
Tags: 1.3.8.4-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  The ManaPlus Client
 
3
 *  Copyright (C) 2013  The ManaPlus Developers
 
4
 *
 
5
 *  This file is part of The ManaPlus Client.
 
6
 *
 
7
 *  This program is free software; you can redistribute it and/or modify
 
8
 *  it under the terms of the GNU General Public License as published by
 
9
 *  the Free Software Foundation; either version 2 of the License, or
 
10
 *  any later version.
 
11
 *
 
12
 *  This program is distributed in the hope that it will be useful,
 
13
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 *  GNU General Public License for more details.
 
16
 *
 
17
 *  You should have received a copy of the GNU General Public License
 
18
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
 */
 
20
 
 
21
#ifndef GUI_WIDGETS_EMOTEPAGE_H
 
22
#define GUI_WIDGETS_EMOTEPAGE_H
 
23
 
 
24
#include "gui/widgets/widget2.h"
 
25
 
 
26
#include <guichan/mouselistener.hpp>
 
27
#include <guichan/widget.hpp>
 
28
 
 
29
#include "localconsts.h"
 
30
 
 
31
class EmotePage final : public gcn::Widget,
 
32
                        public Widget2,
 
33
                        public gcn::MouseListener
 
34
{
 
35
    public:
 
36
        explicit EmotePage(const Widget2 *const widget);
 
37
 
 
38
        A_DELETE_COPY(EmotePage)
 
39
 
 
40
        ~EmotePage();
 
41
 
 
42
        void draw(gcn::Graphics *graphics) override;
 
43
 
 
44
        void mousePressed(gcn::MouseEvent &mouseEvent) override;
 
45
 
 
46
        int getIndexFromGrid(const int x, const int y) const;
 
47
 
 
48
        void resetAction();
 
49
 
 
50
        int getSelectedIndex()
 
51
        { return mSelectedIndex; }
 
52
 
 
53
    private:
 
54
        ImageSet *mEmotes;
 
55
        int mSelectedIndex;
 
56
};
 
57
 
 
58
#endif  // GUI_WIDGETS_EMOTEPAGE_H