summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-groups-wizards.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk-widgets-groups-wizards.ads')
-rw-r--r--src/fltk-widgets-groups-wizards.ads58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/fltk-widgets-groups-wizards.ads b/src/fltk-widgets-groups-wizards.ads
new file mode 100644
index 0000000..63221db
--- /dev/null
+++ b/src/fltk-widgets-groups-wizards.ads
@@ -0,0 +1,58 @@
+
+
+package FLTK.Widgets.Groups.Wizards is
+
+
+ type Wizard is new Group with private;
+
+
+
+
+ function Create
+ (X, Y, W, H : in Integer;
+ Text : in String)
+ return Wizard;
+
+
+
+
+ procedure Next
+ (This : in out Wizard);
+
+ procedure Prev
+ (This : in out Wizard);
+
+
+
+
+ function Get_Visible
+ (This : in Wizard)
+ return access Widget'Class;
+
+ procedure Set_Visible
+ (This : in out Wizard;
+ Item : access Widget'Class);
+
+
+
+
+ procedure Draw
+ (This : in out Wizard);
+
+ function Handle
+ (This : in out Wizard;
+ Event : in Event_Kind)
+ return Event_Outcome;
+
+
+private
+
+
+ type Wizard is new Group with null record;
+
+ overriding procedure Finalize
+ (This : in out Wizard);
+
+
+end FLTK.Widgets.Groups.Wizards;
+