summaryrefslogtreecommitdiff
path: root/fltk-widgets-groups-windows-single-menu.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2017-04-27 10:40:48 +1000
committerJed Barber <jjbarber@y7mail.com>2017-04-27 10:40:48 +1000
commit0d842f0423ba0754fb3675c7468397a8da5f6e1b (patch)
treed5da172bc7af2f7f48a3415eceac67ed67542787 /fltk-widgets-groups-windows-single-menu.ads
parent5d88963cd203f30b79433e34e5c89bfcf8abfe60 (diff)
Organising source
Diffstat (limited to 'fltk-widgets-groups-windows-single-menu.ads')
-rw-r--r--fltk-widgets-groups-windows-single-menu.ads53
1 files changed, 0 insertions, 53 deletions
diff --git a/fltk-widgets-groups-windows-single-menu.ads b/fltk-widgets-groups-windows-single-menu.ads
deleted file mode 100644
index f5d88e7..0000000
--- a/fltk-widgets-groups-windows-single-menu.ads
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-package FLTK.Widgets.Groups.Windows.Single.Menu is
-
-
- type Menu_Window is new Single_Window with private;
-
-
- function Create
- (X, Y, W, H : in Integer;
- Text : in String)
- return Menu_Window;
-
-
- function Create
- (W, H : in Integer)
- return Menu_Window;
-
-
- procedure Show
- (This : in Menu_Window);
-
-
- procedure Hide
- (This : in Menu_Window);
-
-
- procedure Flush
- (This : in out Menu_Window);
-
-
- function Get_Overlay
- (This : in Menu_Window)
- return Boolean;
-
-
- procedure Set_Overlay
- (This : in out Menu_Window;
- Value : in Boolean);
-
-
-private
-
-
- type Menu_Window is new Single_Window with null record;
-
-
- overriding procedure Finalize
- (This : in out Menu_Window);
-
-
-end FLTK.Widgets.Groups.Windows.Single.Menu;
-