summaryrefslogtreecommitdiff
path: root/src/fltk_binding/fltk-text_buffers.ads
blob: 902c97810abb571733281439f197cc7fb2da3813 (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


package FLTK.Text_Buffers is


    type Text_Buffer is new Wrapper with private;
    type Text_Buffer_Access is access all Text_Buffer;


    function Create
           (Requested_Size     : in Natural := 0;
            Preferred_Gap_Size : in Natural := 1024)
        return Text_Buffer;


private


    type Text_Buffer is new Wrapper with null record;


    overriding procedure Finalize
           (This : in out Text_Buffer);


end FLTK.Text_Buffers;