summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-groups-packed.ads
diff options
context:
space:
mode:
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;
+