ManaPlus
emotepage.h
Go to the documentation of this file.
1 /*
2  * The ManaPlus Client
3  * Copyright (C) 2013-2019 The ManaPlus Developers
4  * Copyright (C) 2019-2021 Andrei Karas
5  *
6  * This file is part of The ManaPlus Client.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program. If not, see <http://www.gnu.org/licenses/>.
20  */
21 
22 #ifndef GUI_WIDGETS_EMOTEPAGE_H
23 #define GUI_WIDGETS_EMOTEPAGE_H
24 
27 
28 #include "gui/widgets/widget.h"
29 
30 #include "localconsts.h"
31 
32 class ImageCollection;
33 
34 class EmotePage final : public Widget,
35  public MouseListener,
36  public WidgetListener
37 {
38  public:
39  explicit EmotePage(const Widget2 *const widget);
40 
42 
43  ~EmotePage() override final;
44 
45  void draw(Graphics *const graphics) override final A_NONNULL(2);
46 
47  void safeDraw(Graphics *const graphics) override final A_NONNULL(2);
48 
49  void mousePressed(MouseEvent &event) override final;
50 
51  int getIndexFromGrid(const int x, const int y) const;
52 
53  void widgetResized(const Event &event A_UNUSED) override final;
54 
55  void widgetMoved(const Event &event A_UNUSED) override final;
56 
57  void resetAction();
58 
59  int getSelectedIndex() const
60  { return mSelectedIndex; }
61 
62  private:
66 };
67 
68 #endif // GUI_WIDGETS_EMOTEPAGE_H
int mSelectedIndex
Definition: emotepage.h:65
void safeDraw(Graphics *const graphics)
Definition: emotepage.cpp:105
void mousePressed(MouseEvent &event)
Definition: emotepage.cpp:136
void widgetMoved(const Event &event)
Definition: emotepage.cpp:165
int getIndexFromGrid(const int x, const int y) const
Definition: emotepage.cpp:143
ImageCollection * mVertexes
Definition: emotepage.h:64
void resetAction()
Definition: emotepage.cpp:155
EmotePage(const Widget2 *const widget)
Definition: emotepage.cpp:43
void widgetResized(const Event &event)
Definition: emotepage.cpp:160
ImageSet * mEmotes
Definition: emotepage.h:63
int getSelectedIndex() const
Definition: emotepage.h:59
void draw(Graphics *const graphics)
Definition: emotepage.cpp:67
Definition: event.h:79
Definition: widget.h:99
#define A_NONNULL(...)
Definition: localconsts.h:168
#define final
Definition: localconsts.h:46
#define A_DELETE_COPY(func)
Definition: localconsts.h:53
#define A_UNUSED
Definition: localconsts.h:160