diff options
Diffstat (limited to 'src/fltk-widgets-buttons-light.ads')
-rw-r--r-- | src/fltk-widgets-buttons-light.ads | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/src/fltk-widgets-buttons-light.ads b/src/fltk-widgets-buttons-light.ads deleted file mode 100644 index 4c3ea95..0000000 --- a/src/fltk-widgets-buttons-light.ads +++ /dev/null @@ -1,67 +0,0 @@ - - --- Programmed by Jedidiah Barber --- Released into the public domain - - -package FLTK.Widgets.Buttons.Light is - - - type Light_Button is new Button with private; - - type Light_Button_Reference (Data : not null access Light_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 Light_Button; - - end Forge; - - - - - procedure Draw - (This : in out Light_Button); - - function Handle - (This : in out Light_Button; - Event : in Event_Kind) - return Event_Outcome; - - -private - - - type Light_Button is new Button with null record; - - overriding procedure Initialize - (This : in out Light_Button); - - overriding procedure Finalize - (This : in out Light_Button); - - procedure Extra_Init - (This : in out Light_Button; - X, Y, W, H : in Integer; - Text : in String) - with Inline; - - procedure Extra_Final - (This : in out Light_Button) - with Inline; - - - pragma Inline (Draw); - pragma Inline (Handle); - - -end FLTK.Widgets.Buttons.Light; - - |