package FLTK.Widgets.Groups.Windows is type Window is new Group with private; type Window_Access is access all Window; function Create (X, Y, W, H : in Integer; Label : in String) return Window; function Create (W, H : in Integer) return Window; procedure Show (W : in Window); private type Window is new Group with null record; overriding procedure Finalize (This : in out Window); end FLTK.Widgets.Groups.Windows;