summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-groups-tiled.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk-widgets-groups-tiled.ads')
-rw-r--r--src/fltk-widgets-groups-tiled.ads50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/fltk-widgets-groups-tiled.ads b/src/fltk-widgets-groups-tiled.ads
new file mode 100644
index 0000000..89e2c82
--- /dev/null
+++ b/src/fltk-widgets-groups-tiled.ads
@@ -0,0 +1,50 @@
+
+
+package FLTK.Widgets.Groups.Tiled is
+
+
+ type Tiled_Group is new Group with private;
+
+
+
+
+ package Forge is
+
+ function Create
+ (X, Y, W, H : in Integer;
+ Text : in String)
+ return Tiled_Group;
+
+ end Forge;
+
+
+
+
+ procedure Position
+ (This : in out Tiled_Group;
+ Old_X, Old_Y : in Integer;
+ New_X, New_Y : in Integer);
+
+
+
+
+ procedure Draw
+ (This : in out Tiled_Group);
+
+ function Handle
+ (This : in out Tiled_Group;
+ Event : in Event_Kind)
+ return Event_Outcome;
+
+
+private
+
+
+ type Tiled_Group is new Group with null record;
+
+ overriding procedure Finalize
+ (This : in out Tiled_Group);
+
+
+end FLTK.Widgets.Groups.Tiled;
+