blob: 14df7183eb0e116cfe3c5c5be2e25ff604b1cb48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
package FLTK.Images.Bitmaps is
type Bitmap is new Image with private;
type Bitmap_Reference (Data : not null access Bitmap'Class) is limited null record
with Implicit_Dereference => Data;
function Copy
(This : in Bitmap;
Width, Height : in Natural)
return Bitmap'Class;
function Copy
(This : in Bitmap)
return Bitmap'Class;
procedure Draw
(This : in Bitmap;
X, Y : in Integer);
procedure Draw
(This : in Bitmap;
X, Y, W, H : in Integer;
CX, CY : in Integer := 0);
private
type Bitmap is new Image with null record;
overriding procedure Finalize
(This : in out Bitmap);
pragma Inline (Copy);
pragma Inline (Draw);
end FLTK.Images.Bitmaps;
|