summaryrefslogtreecommitdiff
path: root/src/fltk_binding/fltk-widgets-buttons-light.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk_binding/fltk-widgets-buttons-light.ads')
-rw-r--r--src/fltk_binding/fltk-widgets-buttons-light.ads25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/fltk_binding/fltk-widgets-buttons-light.ads b/src/fltk_binding/fltk-widgets-buttons-light.ads
new file mode 100644
index 0000000..d0c733d
--- /dev/null
+++ b/src/fltk_binding/fltk-widgets-buttons-light.ads
@@ -0,0 +1,25 @@
+
+
+package FLTK.Widgets.Buttons.Light is
+
+
+ type Light_Button is new Button with private;
+
+
+ function Create
+ (X, Y, W, H : Integer;
+ Label : String)
+ return Light_Button;
+
+
+private
+
+
+ type Light_Button is new Button with null record;
+
+
+ overriding procedure Finalize (This : in out Light_Button);
+
+
+end FLTK.Widgets.Buttons.Light;
+