ScummVM API documentation
u8_save_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 ULTIMA8_GUMPS_U8SAVEGUMP_H
23 #define ULTIMA8_GUMPS_U8SAVEGUMP_H
24 
25 #include "ultima/shared/std/string.h"
26 #include "ultima/ultima8/gumps/gump.h"
27 #include "ultima/ultima8/misc/classtype.h"
28 
29 namespace Ultima {
30 namespace Ultima8 {
31 
32 class EditWidget;
33 
37 class U8SaveGump : public Gump {
38 public:
39  ENABLE_RUNTIME_CLASSTYPE()
40 
41  U8SaveGump(bool save, int page);
42  ~U8SaveGump() override;
43 
44  void InitGump(Gump *newparent, bool take_focus = true) override;
45  void Close(bool no_del = false) override;
46 
47  Gump *onMouseDown(int button, int32 mx, int32 my) override;
48  void onMouseClick(int button, int32 mx, int32 my) override;
49  void onMouseDouble(int button, int32 mx, int32 my) override;
50  bool OnKeyDown(int key, int mod) override;
51  void ChildNotify(Gump *child, uint32 message) override;
52  void OnFocus(bool gain) override;
53 
54  static Gump *showLoadSaveGump(Gump *parent, bool save);
55 
56 protected:
57  bool _save;
58  int _page;
59 
60  Std::vector<EditWidget *> _editWidgets;
61  Std::vector<Std::string> _descriptions;
62 
63  void loadDescriptions();
64 
65  bool loadgame(int saveIndex);
66  bool savegame(int saveIndex, const Std::string &name);
67 };
68 
69 } // End of namespace Ultima8
70 } // End of namespace Ultima
71 
72 #endif
Definition: gump.h:47
Definition: detection.h:27
void ChildNotify(Gump *child, uint32 message) override
void InitGump(Gump *newparent, bool take_focus=true) override
Definition: string.h:30
void Close(bool no_del=false) override
Definition: u8_save_gump.h:37
Definition: containers.h:38