ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
macgui_v6.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 SCUMM_MACGUI_MACGUI_V6_H
23 #define SCUMM_MACGUI_MACGUI_V6_H
24 
25 #include "common/events.h"
26 #include "common/rect.h"
27 #include "common/str.h"
28 
29 namespace Scumm {
30 
31 class MacGuiImpl;
32 
33 class MacV6Gui : public MacGuiImpl {
34 private:
35  Common::String _gameName;
36 
37  Graphics::Surface *_backupScreen;
38  byte *_backupPalette;
39 
40  int _screenSaveLevel = 0;
41 
42 public:
43  MacV6Gui(ScummEngine *vm, const Common::Path &resourceFile);
44  ~MacV6Gui();
45 
46  bool initialize() override;
47  bool readStrings() override;
48 
49  const Common::String name() const override { return _gameName; }
50  int getNumColors() const override { return 256; }
51 
52  // See setMacGuiColors()
53  uint32 getBlack() const override { return 255; }
54  uint32 getWhite() const override { return 254; }
55 
56  bool handleEvent(Common::Event event) override;
57 
58  const Graphics::Font *getFontByScummId(int32 id) override;
59 
60  void setupCursor(int &width, int &height, int &hotspotX, int &hotspotY, int &animate) override;
61 
62  void resetAfterLoad() override;
63  void update(int delta) override {}
64 
65  void updateThumbnail(MacDialogWindow *window, Common::Rect drawArea, int saveSlot);
66 
67 protected:
68  bool getFontParams(FontId fontId, int &id, int &size, int &slant) const override;
69 
70  void updateMenus() override;
71  bool handleMenu(int id, Common::String &name) override;
72 
73  void saveScreen() override;
74  void restoreScreen() override;
75 
76  void onMenuOpen() override;
77  void onMenuClose() override;
78 
79  void drawDottedFrame(MacDialogWindow *window, Common::Rect bounds, int x1, int x2);
80 
81  MacGuiImpl::MacImageSlider *addSlider(MacDialogWindow *window, int x, int y, int width, int minValue, int maxValue, int primaryMarkings = 4);
82 
83  void setVolume(int type, int volume);
84 
85  void runAboutDialog() override;
86  bool runOpenDialog(int &saveSlotToHandle) override;
87  bool runSaveDialog(int &saveSlotToHandle, Common::String &saveName) override;
88  bool runOptionsDialog() override;
89  bool runQuitDialog() override;
90  bool runRestartDialog() override;
91 };
92 
93 } // End of namespace Scumm
94 
95 #endif
Definition: macgui_impl.h:52
Definition: str.h:59
Definition: font.h:83
Definition: surface.h:67
Definition: macgui_v6.h:33
Definition: macgui_impl.h:552
Definition: rect.h:144
Definition: path.h:52
Definition: scumm.h:504
Definition: events.h:199
Definition: macgui_impl.h:655
Definition: actor.h:30