summaryrefslogtreecommitdiff
path: root/src/fltk_binding/fltk-widget-group-window.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk_binding/fltk-widget-group-window.adb')
-rw-r--r--src/fltk_binding/fltk-widget-group-window.adb86
1 files changed, 86 insertions, 0 deletions
diff --git a/src/fltk_binding/fltk-widget-group-window.adb b/src/fltk_binding/fltk-widget-group-window.adb
new file mode 100644
index 0000000..1007d71
--- /dev/null
+++ b/src/fltk_binding/fltk-widget-group-window.adb
@@ -0,0 +1,86 @@
+
+
+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;
+