package FLTK.Widgets.Inputs.File is type File_Input is new Input with private; package Forge is function Create (X, Y, W, H : in Integer; Text : in String) return File_Input; end Forge; procedure Draw (This : in out File_Input); function Handle (This : in out File_Input; Event : in Event_Kind) return Event_Outcome; private type File_Input is new Input with null record; overriding procedure Finalize (This : in out File_Input); end FLTK.Widgets.Inputs.File;