diff options
Diffstat (limited to 'src/fltk-widgets-buttons-enter.ads')
-rw-r--r-- | src/fltk-widgets-buttons-enter.ads | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/src/fltk-widgets-buttons-enter.ads b/src/fltk-widgets-buttons-enter.ads deleted file mode 100644 index 0180628..0000000 --- a/src/fltk-widgets-buttons-enter.ads +++ /dev/null @@ -1,70 +0,0 @@ - - --- Programmed by Jedidiah Barber --- Released into the public domain - - --- Return Buttons, but return is a reserved word, so they're Enter Buttons instead - - -package FLTK.Widgets.Buttons.Enter is - - - type Enter_Button is new Button with private; - - type Enter_Button_Reference (Data : not null access Enter_Button'Class) is - limited null record with Implicit_Dereference => Data; - - - - - package Forge is - - function Create - (X, Y, W, H : in Integer; - Text : in String := "") - return Enter_Button; - - end Forge; - - - - - procedure Draw - (This : in out Enter_Button); - - function Handle - (This : in out Enter_Button; - Event : in Event_Kind) - return Event_Outcome; - - -private - - - type Enter_Button is new Button with null record; - - overriding procedure Initialize - (This : in out Enter_Button); - - overriding procedure Finalize - (This : in out Enter_Button); - - procedure Extra_Init - (This : in out Enter_Button; - X, Y, W, H : in Integer; - Text : in String) - with Inline; - - procedure Extra_Final - (This : in out Enter_Button) - with Inline; - - - pragma Inline (Draw); - pragma Inline (Handle); - - -end FLTK.Widgets.Buttons.Enter; - - |