blob: d5c5f6a90360e718c6926b68fa34e9be07ccdaaf (
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
|
-- Programmed by Jedidiah Barber
-- Licensed under the Sunset License v1.0
-- See license.txt for further details
package body Windows is
package WN renames FLTK.Widgets.Groups.Windows;
-- Used to hide about/find/replace/etc windows instead
-- of constantly creating and destroying them.
procedure Hide_CB
(Item : in out FLTK.Widgets.Widget'Class)
is
P : access FLTK.Widgets.Groups.Group'Class;
begin
if Item in WN.Window'Class then
WN.Window (Item).Hide;
else
P := Item.Parent;
loop
if P = null then
return;
end if;
exit when P.all in WN.Window'Class;
P := P.Parent;
end loop;
WN.Window (P.all).Hide;
end if;
end Hide_CB;
end Windows;
|