summaryrefslogtreecommitdiff
path: root/src/windows.adb
blob: d63790555bb7d61f8cb9fa863eef9c35a582739c (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


with

    FLTK.Widgets.Groups.Windows;


package body Windows is


    package WN renames FLTK.Widgets.Groups.Windows;




    procedure Set_Logo
           (This : in out Window;
            Logo : in out FLTK.Images.RGB.PNG.PNG_Image) is
    begin
        This.Set_Icon (Logo);
    end Set_Logo;




    --  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;