blob: 52f475dc5e92b0fcd85af9c8d8b6c61977d0db15 (
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
|
with Interfaces.C;
with System;
use type System.Address;
package body FLTK.Text_Buffers is
function new_fl_text_buffer
(RS, PGS : in Interfaces.C.int)
return System.Address;
pragma Import (C, new_fl_text_buffer, "new_fl_text_buffer");
procedure free_fl_text_buffer
(TB : in System.Address);
pragma Import (C, free_fl_text_buffer, "free_fl_text_buffer");
procedure Finalize
(This : in out Text_Buffer) is
begin
if This.Void_Ptr /= System.Null_Address then
if This in Text_Buffer then
free_fl_text_buffer (This.Void_Ptr);
end if;
end if;
end Finalize;
function Create
(Requested_Size : in Natural := 0;
Preferred_Gap_Size : in Natural := 1024)
return Text_Buffer is
begin
return This : Text_Buffer do
This.Void_Ptr := new_fl_text_buffer
(Interfaces.C.int (Requested_Size),
Interfaces.C.int (Preferred_Gap_Size));
end return;
end Create;
end FLTK.Text_Buffers;
|