aboutsummaryrefslogtreecommitdiff
path: root/src/fltk-widgets-buttons-light-check.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk-widgets-buttons-light-check.ads')
-rw-r--r--src/fltk-widgets-buttons-light-check.ads51
1 files changed, 0 insertions, 51 deletions
diff --git a/src/fltk-widgets-buttons-light-check.ads b/src/fltk-widgets-buttons-light-check.ads
deleted file mode 100644
index abf5d9f..0000000
--- a/src/fltk-widgets-buttons-light-check.ads
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-package FLTK.Widgets.Buttons.Light.Check is
-
-
- type Check_Button is new Light_Button with private;
-
- type Check_Button_Reference (Data : not null access Check_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 Check_Button;
-
- end Forge;
-
-
-
-
- procedure Draw
- (This : in out Check_Button);
-
- function Handle
- (This : in out Check_Button;
- Event : in Event_Kind)
- return Event_Outcome;
-
-
-private
-
-
- type Check_Button is new Light_Button with null record;
-
- overriding procedure Finalize
- (This : in out Check_Button);
-
-
-
-
- pragma Inline (Draw);
- pragma Inline (Handle);
-
-
-end FLTK.Widgets.Buttons.Light.Check;
-