summaryrefslogtreecommitdiff
path: root/src/fltk_binding/fltk-widget-button-light.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-05-25 01:10:29 +1000
committerJed Barber <jjbarber@y7mail.com>2016-05-25 01:10:29 +1000
commit99ea64c2c914608d3429e63845f8ed396b234dd7 (patch)
tree767a09255183d906af68706bfd11df4787b0a5c9 /src/fltk_binding/fltk-widget-button-light.ads
parent63d9e14dd0cccb2191bd18ec07cfb11d06a30fcd (diff)
Buttons and accessors
Diffstat (limited to 'src/fltk_binding/fltk-widget-button-light.ads')
-rw-r--r--src/fltk_binding/fltk-widget-button-light.ads25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/fltk_binding/fltk-widget-button-light.ads b/src/fltk_binding/fltk-widget-button-light.ads
new file mode 100644
index 0000000..bbc2c9e
--- /dev/null
+++ b/src/fltk_binding/fltk-widget-button-light.ads
@@ -0,0 +1,25 @@
+
+
+package FLTK.Widget.Button.Light is
+
+
+ type Light_Type is new Button_Type with private;
+
+
+ function Create
+ (X, Y, W, H : Integer;
+ Label : String)
+ return Light_Type;
+
+
+private
+
+
+ type Light_Type is new Button_Type with null record;
+
+
+ overriding procedure Finalize (This : in out Light_Type);
+
+
+end FLTK.Widget.Button.Light;
+