ScummVM API documentation
bmp_object.h
1
2
/* ScummVM - Graphic Adventure Engine
3
*
4
* ScummVM is the legal property of its developers, whose names
5
* are too numerous to list here. Please refer to the COPYRIGHT
6
* file distributed with this source distribution.
7
*
8
* This program is free software: you can redistribute it and/or modify
9
* it under the terms of the GNU General Public License as published by
10
* the Free Software Foundation, either version 3 of the License, or
11
* (at your option) any later version.
12
*
13
* This program is distributed in the hope that it will be useful,
14
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
* GNU General Public License for more details.
17
*
18
* You should have received a copy of the GNU General Public License
19
* along with this program. If not, see <http://www.gnu.org/licenses/>.
20
*
21
*/
22
23
#ifndef BAGEL_BAGLIB_BMP_OBJECT_H
24
#define BAGEL_BAGLIB_BMP_OBJECT_H
25
26
#include "bagel/baglib/object.h"
27
28
namespace
Bagel
{
29
33
class
CBagBmpObject
:
public
CBagObject
{
34
private
:
35
CBofBitmap
*_bmp;
36
int
_transparency;
37
38
protected
:
39
void
setBitmap(
CBofBitmap
*bmp) {
40
_bmp = bmp;
41
}
42
43
public
:
44
CBagBmpObject
();
45
virtual
~
CBagBmpObject
();
46
47
ErrorCode attach()
override
{
48
return
attach(
nullptr
);
49
}
50
51
ErrorCode attach(
CBofPalette
*palette);
52
ErrorCode detach()
override
;
53
54
bool
isAttached()
override
{
55
return
_bmp !=
nullptr
;
56
}
57
58
bool
isInside(
const
CBofPoint
&pt)
override
;
59
60
CBofBitmap
*getBitmap()
const
{
61
return
_bmp;
62
}
63
CBofRect
getRect()
override
;
64
65
ErrorCode update(
CBofBitmap
*bmp,
CBofPoint
pt,
CBofRect
*srcRect =
nullptr
,
int
maskColor = -1)
override
;
66
};
67
68
}
// namespace Bagel
69
70
#endif
Bagel::CBofBitmap
Definition:
bitmap.h:55
Bagel::CBofRect
Definition:
rect.h:36
Bagel::CBagObject
Definition:
object.h:85
Bagel
Definition:
bagel.h:31
Bagel::CBofPoint
Definition:
point.h:34
Bagel::CBofPalette
Definition:
palette.h:69
Bagel::CBagBmpObject
Definition:
bmp_object.h:33
engines
bagel
baglib
bmp_object.h
Generated on Fri Nov 15 2024 09:10:54 for ScummVM API documentation by
1.8.13