summaryrefslogtreecommitdiff
path: root/fltk-widget-group-window.adb
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-05-26 00:38:43 +1000
committerJed Barber <jjbarber@y7mail.com>2016-05-26 00:38:43 +1000
commit0f28695be695a0b2e8fbfff388c61cb69cdc03af (patch)
tree9b9de86c8c308f9fdac949620d4deec6d21a3710 /fltk-widget-group-window.adb
parentcbe99e357fff28fb6aa3db7bec03756385c8928c (diff)
The Great Package Naming Style Change(tm)
Diffstat (limited to 'fltk-widget-group-window.adb')
-rw-r--r--fltk-widget-group-window.adb86
1 files changed, 0 insertions, 86 deletions
diff --git a/fltk-widget-group-window.adb b/fltk-widget-group-window.adb
deleted file mode 100644
index 1007d71..0000000
--- a/fltk-widget-group-window.adb
+++ /dev/null
@@ -1,86 +0,0 @@
-
-
-with Interfaces.C;
-with System;
-use type System.Address;
-
-
-package body FLTK.Widget.Group.Window is
-
-
- function new_fl_window
- (X, Y, W, H : in Interfaces.C.int;
- L : in Interfaces.C.char_array)
- return System.Address;
- pragma Import (C, new_fl_window, "new_fl_window");
-
- function new_fl_window2 (W, H : in Interfaces.C.int) return System.Address;
- pragma Import (C, new_fl_window2, "new_fl_window2");
-
- procedure free_fl_window (W : in System.Address);
- pragma Import (C, free_fl_window, "free_fl_window");
-
- procedure fl_window_show (W : in System.Address);
- pragma Import (C, fl_window_show, "fl_window_show");
-
-
-
-
- procedure fl_group_end (G : in System.Address);
- pragma Import (C, fl_group_end, "fl_group_end");
-
-
-
-
- procedure Finalize (This : in out Window_Type) is
- begin
- if (This.Void_Ptr /= System.Null_Address) then
- free_fl_window (This.Void_Ptr);
- end if;
- end Finalize;
-
-
-
-
- function Create
- (X, Y, W, H : Integer;
- Label : String)
- return Window_Type is
-
- VP : System.Address;
-
- begin
-
- VP := new_fl_window
- (Interfaces.C.int (X),
- Interfaces.C.int (Y),
- Interfaces.C.int (W),
- Interfaces.C.int (H),
- Interfaces.C.To_C (Label));
- fl_group_end (VP);
- return (Ada.Finalization.Limited_Controlled with Void_Ptr => VP);
-
- end Create;
-
-
-
-
- function Create (W, H : in Integer) return Window_Type is
- VP : System.Address;
- begin
- VP := new_fl_window2 (Interfaces.C.int (W), Interfaces.C.int (H));
- fl_group_end (VP);
- return (Ada.Finalization.Limited_Controlled with Void_Ptr => VP);
- end Create;
-
-
-
-
- procedure Show (W : in Window_Type) is
- begin
- fl_window_show (W.Void_Ptr);
- end Show;
-
-
-end FLTK.Widget.Group.Window;
-