private with FLTK.Widgets.Boxes, FLTK.Widgets.Buttons.Enter; package Windows.About is type About_Window is new Window with private; function Create return About_Window; function Create (X, Y, W, H : in Integer; Label_Text : in String) return About_Window; function Create (W, H : in Integer) return About_Window; private type About_Window is new Window with record Picture : FLTK.Widgets.Boxes.Box; Heading : FLTK.Widgets.Boxes.Box; Blurb : FLTK.Widgets.Boxes.Box; Author : FLTK.Widgets.Boxes.Box; Dismiss : FLTK.Widgets.Buttons.Enter.Enter_Button; end record; end Windows.About;