summaryrefslogtreecommitdiff
path: root/fltk-widgets-groups-windows-single-menu.adb
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.adb
parent5d88963cd203f30b79433e34e5c89bfcf8abfe60 (diff)
Organising source
Diffstat (limited to 'fltk-widgets-groups-windows-single-menu.adb')
-rw-r--r--fltk-widgets-groups-windows-single-menu.adb158
1 files changed, 0 insertions, 158 deletions
diff --git a/fltk-widgets-groups-windows-single-menu.adb b/fltk-widgets-groups-windows-single-menu.adb
deleted file mode 100644
index 8345308..0000000
--- a/fltk-widgets-groups-windows-single-menu.adb
+++ /dev/null
@@ -1,158 +0,0 @@
-
-
-with Interfaces.C;
-with System;
-use type System.Address;
-use type Interfaces.C.unsigned;
-
-
-package body FLTK.Widgets.Groups.Windows.Single.Menu is
-
-
- function new_fl_menu_window
- (X, Y, W, H : in Interfaces.C.int;
- Label : in Interfaces.C.char_array)
- return System.Address;
- pragma Import (C, new_fl_menu_window, "new_fl_menu_window");
-
- function new_fl_menu_window2
- (W, H : in Interfaces.C.int)
- return System.Address;
- pragma Import (C, new_fl_menu_window2, "new_fl_menu_window2");
-
- procedure free_fl_menu_window
- (M : in System.Address);
- pragma Import (C, free_fl_menu_window, "free_fl_menu_window");
-
- procedure fl_menu_window_show
- (M : in System.Address);
- pragma Import (C, fl_menu_window_show, "fl_menu_window_show");
-
- procedure fl_menu_window_hide
- (M : in System.Address);
- pragma Import (C, fl_menu_window_hide, "fl_menu_window_hide");
-
- procedure fl_menu_window_flush
- (M : in System.Address);
- pragma Import (C, fl_menu_window_flush, "fl_menu_window_flush");
-
- procedure fl_menu_window_set_overlay
- (M : in System.Address);
- pragma Import (C, fl_menu_window_set_overlay, "fl_menu_window_set_overlay");
-
- procedure fl_menu_window_clear_overlay
- (M : in System.Address);
- pragma Import (C, fl_menu_window_clear_overlay, "fl_menu_window_clear_overlay");
-
- function fl_menu_window_overlay
- (M : in System.Address)
- return Interfaces.C.unsigned;
- pragma Import (C, fl_menu_window_overlay, "fl_menu_window_overlay");
-
-
-
-
- procedure Finalize
- (This : in out Menu_Window) is
- begin
- Finalize (Single_Window (This));
- if This.Void_Ptr /= System.Null_Address then
- if This in Menu_Window then
- free_fl_menu_window (This.Void_Ptr);
- end if;
- end if;
- end Finalize;
-
-
-
-
- function Create
- (X, Y, W, H : in Integer;
- Text : in String)
- return Menu_Window is
- begin
- return This : Menu_Window do
- This.Void_Ptr := new_fl_menu_window
- (Interfaces.C.int (X),
- Interfaces.C.int (Y),
- Interfaces.C.int (W),
- Interfaces.C.int (H),
- Interfaces.C.To_C (Text));
- fl_group_end (This.Void_Ptr);
- fl_widget_set_user_data
- (This.Void_Ptr,
- Widget_Convert.To_Address (This'Unchecked_Access));
- end return;
- end Create;
-
-
-
-
- function Create
- (W, H : in Integer)
- return Menu_Window is
- begin
- return This : Menu_Window do
- This.Void_Ptr := new_fl_menu_window2
- (Interfaces.C.int (W),
- Interfaces.C.int (H));
- fl_group_end (This.Void_Ptr);
- fl_widget_set_user_data
- (This.Void_Ptr,
- Widget_Convert.To_Address (This'Unchecked_Access));
- end return;
- end Create;
-
-
-
-
- procedure Show
- (This : in Menu_Window) is
- begin
- fl_menu_window_show (This.Void_Ptr);
- end Show;
-
-
-
-
- procedure Hide
- (This : in Menu_Window) is
- begin
- fl_menu_window_hide (This.Void_Ptr);
- end Hide;
-
-
-
-
- procedure Flush
- (This : in out Menu_Window) is
- begin
- fl_menu_window_flush (This.Void_Ptr);
- end Flush;
-
-
-
-
- function Get_Overlay
- (This : in Menu_Window)
- return Boolean is
- begin
- return fl_menu_window_overlay (This.Void_Ptr) /= 0;
- end Get_Overlay;
-
-
-
- procedure Set_Overlay
- (This : in out Menu_Window;
- Value : in Boolean) is
- begin
- if Value then
- fl_menu_window_set_overlay (This.Void_Ptr);
- else
- fl_menu_window_clear_overlay (This.Void_Ptr);
- end if;
- end Set_Overlay;
-
-
-end FLTK.Widgets.Groups.Windows.Single.Menu;
-