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 TITANIC_RECT_H
23
#define TITANIC_RECT_H
24
25
#include "common/rect.h"
26
27
namespace
Titanic
{
28
29
enum
Quadrant {
30
Q_CENTER = 0, Q_LEFT, Q_RIGHT, Q_TOP, Q_BOTTOM
31
};
32
33
typedef
Common::Point
Point
;
34
35
class
Rect
:
public
Common::Rect
{
36
public
:
37
Rect
() :
Common::Rect
() {}
38
Rect
(int16 w, int16 h) :
Common::Rect
(w, h) {}
39
Rect
(int16 x1, int16 y1, int16 x2, int16 y2) :
Common::Rect
(x1, y1, x2, y2) {}
40
44
operator
Point() {
return
Point(
left
, top); }
45
49
void
clear
() {
left
= top =
right
= bottom = 0; }
50
54
void
combine
(
const
Rect
&r);
55
59
void
constrain
(
const
Rect
&r);
60
64
Point
getPoint
(Quadrant quadrant);
65
};
66
67
}
// End of namespace Titanic
68
69
#endif
/* TITANIC_RECT_H */
Common::RectBase< int16, Rect, Point >::left
int16 left
Definition:
rect.h:170
Point
Definition:
display_client.h:58
Common::Rect
Definition:
rect.h:524
Titanic::Rect::clear
void clear()
Definition:
rect.h:49
Titanic::Rect::constrain
void constrain(const Rect &r)
Common::RectBase< int16, Rect, Point >::right
int16 right
Definition:
rect.h:171
Titanic::Rect
Definition:
rect.h:35
Common::Point
Definition:
rect.h:144
Titanic
Definition:
arm.h:30
Titanic::Rect::combine
void combine(const Rect &r)
Titanic::Rect::getPoint
Point getPoint(Quadrant quadrant)
engines
titanic
support
rect.h
Generated on Wed Sep 3 2025 09:05:03 for ScummVM API documentation by
1.8.13