summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-groups-tabbed.adb
blob: 37556e5ac8b1ae895fdbf9fe557084e6d4f886d4 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268


--  Programmed by Jedidiah Barber
--  Released into the public domain


with

    Interfaces.C;


package body FLTK.Widgets.Groups.Tabbed is


    ------------------------
    --  Functions From C  --
    ------------------------

    function new_fl_tabs
           (X, Y, W, H : in Interfaces.C.int;
            Text       : in Interfaces.C.char_array)
        return Storage.Integer_Address;
    pragma Import (C, new_fl_tabs, "new_fl_tabs");
    pragma Inline (new_fl_tabs);

    procedure free_fl_tabs
           (S : in Storage.Integer_Address);
    pragma Import (C, free_fl_tabs, "free_fl_tabs");
    pragma Inline (free_fl_tabs);




    procedure fl_tabs_client_area
           (T          : in     Storage.Integer_Address;
            X, Y, W, H :    out Interfaces.C.int;
            I          : in     Interfaces.C.int);
    pragma Import (C, fl_tabs_client_area, "fl_tabs_client_area");
    pragma Inline (fl_tabs_client_area);




    function fl_tabs_get_push
           (T : in Storage.Integer_Address)
        return Storage.Integer_Address;
    pragma Import (C, fl_tabs_get_push, "fl_tabs_get_push");
    pragma Inline (fl_tabs_get_push);

    procedure fl_tabs_set_push
           (T, I : in Storage.Integer_Address);
    pragma Import (C, fl_tabs_set_push, "fl_tabs_set_push");
    pragma Inline (fl_tabs_set_push);

    function fl_tabs_get_value
           (T : in Storage.Integer_Address)
        return Storage.Integer_Address;
    pragma Import (C, fl_tabs_get_value, "fl_tabs_get_value");
    pragma Inline (fl_tabs_get_value);

    procedure fl_tabs_set_value
           (T, V : in Storage.Integer_Address);
    pragma Import (C, fl_tabs_set_value, "fl_tabs_set_value");
    pragma Inline (fl_tabs_set_value);

    function fl_tabs_which
           (T    : in Storage.Integer_Address;
            X, Y : in Interfaces.C.int)
        return Storage.Integer_Address;
    pragma Import (C, fl_tabs_which, "fl_tabs_which");
    pragma Inline (fl_tabs_which);




    procedure fl_tabs_draw
           (W : in Storage.Integer_Address);
    pragma Import (C, fl_tabs_draw, "fl_tabs_draw");
    pragma Inline (fl_tabs_draw);

    procedure fl_tabs_redraw_tabs
           (T : in Storage.Integer_Address);
    pragma Import (C, fl_tabs_redraw_tabs, "fl_tabs_redraw_tabs");
    pragma Inline (fl_tabs_redraw_tabs);

    function fl_tabs_handle
           (W : in Storage.Integer_Address;
            E : in Interfaces.C.int)
        return Interfaces.C.int;
    pragma Import (C, fl_tabs_handle, "fl_tabs_handle");
    pragma Inline (fl_tabs_handle);




    -------------------
    --  Destructors  --
    -------------------

    procedure Extra_Final
           (This : in out Tabbed_Group) is
    begin
        Extra_Final (Group (This));
    end Extra_Final;


    procedure Finalize
           (This : in out Tabbed_Group) is
    begin
        Extra_Final (This);
        if This.Void_Ptr /= Null_Pointer and This.Needs_Dealloc then
            free_fl_tabs (This.Void_Ptr);
            This.Void_Ptr := Null_Pointer;
        end if;
    end Finalize;




    --------------------
    --  Constructors  --
    --------------------

    procedure Extra_Init
           (This       : in out Tabbed_Group;
            X, Y, W, H : in     Integer;
            Text       : in     String) is
    begin
        Extra_Init (Group (This), X, Y, W, H, Text);
    end Extra_Init;


    procedure Initialize
           (This : in out Tabbed_Group) is
    begin
        This.Draw_Ptr := fl_tabs_draw'Address;
        This.Handle_Ptr := fl_tabs_handle'Address;
    end Initialize;


    package body Forge is

        function Create
               (X, Y, W, H : in Integer;
                Text       : in String := "")
            return Tabbed_Group is
        begin
            return This : Tabbed_Group do
                This.Void_Ptr := new_fl_tabs
                       (Interfaces.C.int (X),
                        Interfaces.C.int (Y),
                        Interfaces.C.int (W),
                        Interfaces.C.int (H),
                        Interfaces.C.To_C (Text));
                Extra_Init (This, X, Y, W, H, Text);
            end return;
        end Create;

    end Forge;




    -----------------------
    --  API Subprograms  --
    -----------------------

    procedure Get_Client_Area
           (This       : in     Tabbed_Group;
            Tab_Height : in     Natural;
            X, Y, W, H :    out Integer) is
    begin
        fl_tabs_client_area
           (This.Void_Ptr,
            Interfaces.C.int (X),
            Interfaces.C.int (Y),
            Interfaces.C.int (W),
            Interfaces.C.int (H),
            Interfaces.C.int (Tab_Height));
    end Get_Client_Area;




    function Get_Push
           (This : in Tabbed_Group)
        return access Widget'Class
    is
        Widget_Ptr : Storage.Integer_Address :=
            fl_tabs_get_push (This.Void_Ptr);
        Actual_Widget : access Widget'Class :=
            Widget_Convert.To_Pointer (Storage.To_Address (fl_widget_get_user_data (Widget_Ptr)));
    begin
        return Actual_Widget;
    end Get_Push;


    procedure Set_Push
           (This : in out Tabbed_Group;
            Item : in out Widget'Class) is
    begin
        fl_tabs_set_push (This.Void_Ptr, Item.Void_Ptr);
    end Set_Push;


    function Get_Visible
           (This : in Tabbed_Group)
        return access Widget'Class
    is
        Widget_Ptr : Storage.Integer_Address :=
            fl_tabs_get_value (This.Void_Ptr);
        Actual_Widget : access Widget'Class :=
            Widget_Convert.To_Pointer (Storage.To_Address (fl_widget_get_user_data (Widget_Ptr)));
    begin
        return Actual_Widget;
    end Get_Visible;


    procedure Set_Visible
           (This : in out Tabbed_Group;
            Item : in out Widget'Class) is
    begin
        fl_tabs_set_value (This.Void_Ptr, Item.Void_Ptr);
    end Set_Visible;


    function Get_Which
           (This             : in Tabbed_Group;
            Event_X, Event_Y : in Integer)
        return access Widget'Class
    is
        Widget_Ptr : Storage.Integer_Address :=
            fl_tabs_which (This.Void_Ptr, Interfaces.C.int (Event_X), Interfaces.C.int (Event_Y));
        Actual_Widget : access Widget'Class :=
            Widget_Convert.To_Pointer (Storage.To_Address (fl_widget_get_user_data (Widget_Ptr)));
    begin
        return Actual_Widget;
    end Get_Which;




    procedure Draw
           (This : in out Tabbed_Group) is
    begin
        Group (This).Draw;
    end Draw;


    procedure Redraw_Tabs
           (This : in out Tabbed_Group) is
    begin
        fl_tabs_redraw_tabs (This.Void_Ptr);
    end Redraw_Tabs;


    function Handle
           (This  : in out Tabbed_Group;
            Event : in     Event_Kind)
        return Event_Outcome is
    begin
        return Group (This).Handle (Event);
    end Handle;


end FLTK.Widgets.Groups.Tabbed;