ScummVM API documentation
sign_view_gump.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 NUVIE_VIEWS_SIGN_VIEW_GUMP_H
23 #define NUVIE_VIEWS_SIGN_VIEW_GUMP_H
24 
25 #include "ultima/nuvie/views/draggable_view.h"
26 
27 namespace Ultima {
28 namespace Nuvie {
29 
30 class Configuration;
31 class TileManager;
32 class ObjManager;
33 class Screen;
34 class Font;
35 //class BMPFont;
36 
37 class SignViewGump : public DraggableView {
38 
39  Font *font;
40  char *sign_text;
41 
42 public:
43  SignViewGump(const Configuration *cfg);
44  ~SignViewGump() override;
45 
46  bool init(Screen *tmp_screen, void *view_manager, Font *f, Party *p, TileManager *tm, ObjManager *om, const char *text_string, uint16 length);
47 
48  void Display(bool full_redraw) override;
49 
50  GUI_status callback(uint16 msg, GUI_CallBack *caller, void *data) override;
51 
52  GUI_status MouseDown(int x, int y, Shared::MouseButton button) override;
53  GUI_status KeyDown(const Common::KeyState &key) override;
54 };
55 
56 } // End of namespace Nuvie
57 } // End of namespace Ultima
58 
59 #endif
Definition: configuration.h:61
Definition: atari-screen.h:60
Definition: sign_view_gump.h:37
Definition: tile_manager.h:145
Definition: party.h:92
Definition: screen.h:41
Definition: detection.h:27
Definition: draggable_view.h:34
Definition: obj_manager.h:75
Definition: keyboard.h:294
Definition: font.h:42
Definition: gui_callback.h:31