summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-groups-windows-single-menu.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk-widgets-groups-windows-single-menu.ads')
-rw-r--r--src/fltk-widgets-groups-windows-single-menu.ads20
1 files changed, 19 insertions, 1 deletions
diff --git a/src/fltk-widgets-groups-windows-single-menu.ads b/src/fltk-widgets-groups-windows-single-menu.ads
index 1ec5c1c..0d82bf8 100644
--- a/src/fltk-widgets-groups-windows-single-menu.ads
+++ b/src/fltk-widgets-groups-windows-single-menu.ads
@@ -5,6 +5,9 @@ package FLTK.Widgets.Groups.Windows.Single.Menu is
type Menu_Window is new Single_Window with private;
+ type Menu_Window_Reference (Data : not null access Menu_Window'Class) is
+ limited null record with Implicit_Dereference => Data;
+
@@ -36,7 +39,7 @@ package FLTK.Widgets.Groups.Windows.Single.Menu is
- function Get_Overlay
+ function Is_Overlay
(This : in Menu_Window)
return Boolean;
@@ -65,5 +68,20 @@ private
(This : in out Menu_Window);
+
+
+ pragma Inline (Show);
+ pragma Inline (Hide);
+ pragma Inline (Flush);
+
+
+ pragma Inline (Is_Overlay);
+ pragma Inline (Set_Overlay);
+
+
+ pragma Inline (Draw);
+ pragma Inline (Handle);
+
+
end FLTK.Widgets.Groups.Windows.Single.Menu;