summaryrefslogtreecommitdiff
path: root/src/windows.ads
blob: 64a8823c4af96170142fed82a1b5d7717df64753 (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


with FLTK.Widgets.Groups.Windows.Double;
with FLTK.Images.RGB.PNG;


package Windows is


    type Window is new FLTK.Widgets.Groups.Windows.Double.Double_Window with private;


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


private


    type Window is new FLTK.Widgets.Groups.Windows.Double.Double_Window with null record;


    procedure Hide_CB
           (Item : in out FLTK.Widgets.Widget'Class);


end Windows;