ScummVM API documentation
conversationwidget.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
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 3 of the License, or
10  * (at your option) 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 
22 #ifndef MUTATIONOFJB_CONVERSATIONWIDGET_H
23 #define MUTATIONOFJB_CONVERSATIONWIDGET_H
24 
25 #include "mutationofjb/widgets/widget.h"
26 #include "graphics/surface.h"
27 
28 namespace MutationOfJB {
29 
30 class ConversationWidget;
31 
33 public:
34  virtual ~ConversationWidgetCallback() {}
35  virtual void onChoiceClicked(ConversationWidget *, int choiceNo, uint32 data) = 0;
36 };
37 
38 class ConversationWidget : public Widget {
39 public:
40  enum { CONVERSATION_MAX_CHOICES = 4 };
41 
42  ConversationWidget(GuiScreen &gui, const Common::Rect &area, const Graphics::Surface &surface);
43  void setCallback(ConversationWidgetCallback *callback) {
44  _callback = callback;
45  }
46 
47  void setChoice(int choiceNo, const Common::String &str, uint32 data = 0);
48  void clearChoices();
49 
50  void handleEvent(const Common::Event &event) override;
51 
52 protected:
53  void draw(Graphics::ManagedSurface &surface) override;
54 
55 private:
56  Graphics::Surface _surface;
57  struct ChoiceInfo {
58  Common::String _str;
59  uint32 _data;
60  } _choices[CONVERSATION_MAX_CHOICES];
61  ConversationWidgetCallback *_callback;
62 };
63 
64 }
65 
66 #endif
Definition: managed_surface.h:51
Definition: str.h:59
Definition: surface.h:67
Definition: conversationwidget.h:38
Definition: widget.h:40
Definition: rect.h:144
Definition: animationdecoder.h:36
Definition: events.h:199
Definition: conversationwidget.h:32
Definition: guiscreen.h:45