ScummVM API documentation
rect.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 ULTIMA_SHARED_CORE_RECT_H
23 #define ULTIMA_SHARED_CORE_RECT_H
24 
25 #include "common/rect.h"
26 
27 namespace Ultima {
28 namespace Shared {
29 
30 class TextPoint;
31 
32 typedef Common::Rect Rect;
33 
34 typedef Common::Point Point;
35 
39 class TextPoint : public Common::Point {
40 public:
41  TextPoint() : Common::Point() {}
42  TextPoint(int16 x1, int16 y1) : Common::Point(x1 * 8, y1 * 8) {}
43 };
44 
48 class TextRect : public Common::Rect {
49 public:
50  TextRect() : Common::Rect() {}
51  TextRect(int16 x1, int16 y1, int16 x2, int16 y2) : Common::Rect(x1 * 8, y1 * 8, (x2 + 1) * 8, (y2 + 1) * 8) {}
52 };
53 
54 } // End of namespace Shared
55 
56 using Shared::Rect;
57 using Shared::Point;
58 using Shared::TextPoint;
59 using Shared::TextRect;
60 
61 } // End of namespace Ultima
62 
63 #endif
Definition: display_client.h:58
Definition: rect.h:144
Definition: detection.h:27
Definition: rect.h:39
Definition: rect.h:45
Definition: rect.h:48