summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-groups-packed.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2018-03-19 22:11:39 +1100
committerJed Barber <jjbarber@y7mail.com>2018-03-19 22:11:39 +1100
commitc1dcb4c61e79b1ddd98c0ef84f2d36be7f7fd736 (patch)
treedbc06e9612ec7757286831a79fe617278da50adb /src/fltk-widgets-groups-packed.ads
parent24c57b72a3a8edb92d2861cd8c88bb81bd936ae9 (diff)
Added FLTK.Widgets.Groups.Packed
Diffstat (limited to 'src/fltk-widgets-groups-packed.ads')
-rw-r--r--src/fltk-widgets-groups-packed.ads53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/fltk-widgets-groups-packed.ads b/src/fltk-widgets-groups-packed.ads
new file mode 100644
index 0000000..92ed137
--- /dev/null
+++ b/src/fltk-widgets-groups-packed.ads
@@ -0,0 +1,53 @@
+
+
+package FLTK.Widgets.Groups.Packed is
+
+
+ type Packed_Group is new Group with private;
+
+
+
+
+ package Forge is
+
+ function Create
+ (X, Y, W, H : in Integer;
+ Text : in String)
+ return Packed_Group;
+
+ end Forge;
+
+
+
+
+ function Get_Spacing
+ (This : in Packed_Group)
+ return Integer;
+
+ procedure Set_Spacing
+ (This : in out Packed_Group;
+ To : in Integer);
+
+
+
+
+ procedure Draw
+ (This : in out Packed_Group);
+
+ function Handle
+ (This : in out Packed_Group;
+ Event : in Event_Kind)
+ return Event_Outcome;
+
+
+private
+
+
+ type Packed_Group is new Group with null record;
+
+ overriding procedure Finalize
+ (This : in out Packed_Group);
+
+
+end FLTK.Widgets.Groups.Packed;
+