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