ScummVM API documentation
command_bar_new_ui.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_CORE_COMMAND_BAR_NEW_UI_H
23 #define NUVIE_CORE_COMMAND_BAR_NEW_UI_H
24 
25 #include "ultima/shared/std/string.h"
26 #include "ultima/nuvie/gui/widgets/gui_widget.h"
27 #include "ultima/nuvie/misc/call_back.h"
28 #include "ultima/nuvie/gui/widgets/command_bar.h"
29 
30 namespace Ultima {
31 namespace Nuvie {
32 
33 class NuvieIO;
34 class Events;
35 class Game;
36 class GUI_Button;
37 class GUI_CallBack;
38 class Text;
39 class Font;
40 
41 class CommandBarNewUI: public CommandBar {
42 protected:
43  uint8 cur_pos;
44  uint8 icon_w;
45  uint8 icon_h;
46  uint8 icon_y_offset;
47  uint16 num_icons;
48 
49  Font *font;
50 public:
52  ~CommandBarNewUI() override;
53 
54  void Display(bool full_redraw) override;
55  GUI_status KeyDown(const Common::KeyState &key) override;
56  GUI_status MouseDown(int x, int y, Shared::MouseButton button) override;
57  GUI_status MouseUp(int x, int y, Shared::MouseButton button) override;
58 
59 private:
60  const char *get_command_name(sint8 command_num) const;
61 };
62 
63 } // End of namespace Nuvie
64 } // End of namespace Ultima
65 
66 #endif
Definition: command_bar_new_ui.h:41
Definition: detection.h:27
Definition: keyboard.h:294
Definition: command_bar.h:49
Definition: game.h:73
Definition: font.h:42