ScummVM API documentation
macgui_v5.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_V5_H
23 #define SCUMM_MACGUI_MACGUI_V5_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 MacV5Gui : public MacGuiImpl {
34 public:
35  MacV5Gui(ScummEngine *vm, const Common::Path &resourceFile);
36  ~MacV5Gui() {}
37 
38  const Common::String name() const override { return _strsStrings[kMSIGameName]; }
39  int getNumColors() const override { return 256; }
40 
41  bool handleEvent(Common::Event event) override;
42 
43  const Graphics::Font *getFontByScummId(int32 id) override;
44 
45  void setupCursor(int &width, int &height, int &hotspotX, int &hotspotY, int &animate) override;
46 
47  void resetAfterLoad() override;
48  void update(int delta) override {}
49 
50 protected:
51  bool getFontParams(FontId fontId, int &id, int &size, int &slant) const override;
52 
53  bool handleMenu(int id, Common::String &name) override;
54 
55  void runAboutDialog() override;
56  bool runOptionsDialog() override;
57 
58 private:
59  struct AboutPage {
60  const TextLine *text;
61  int drawArea;
62  uint32 delayMs;
63  };
64 
65  uint _roughProgress = 0;
66  bool _roughWarned = false;
67 
68  void runAboutDialogMI1(MacDialogWindow *window);
69  void runAboutDialogMI2(MacDialogWindow *window);
70  void runAboutDialogIndy4(MacDialogWindow *window);
71 
72  void drawShadow(Graphics::Surface *s, int x, int y, int h, Common::Pair<int, int> *drawData);
73 };
74 
75 } // End of namespace Scumm
76 #endif
Definition: util.h:213
Definition: macgui_impl.h:55
Definition: str.h:59
Definition: font.h:83
Definition: surface.h:67
Definition: path.h:52
Definition: scumm.h:518
Definition: events.h:199
Definition: macgui_impl.h:580
Definition: macgui_v5.h:33
Definition: actor.h:30
Definition: macgui_impl.h:194