From e924af80410c3d9fafc72a1e8217b71ce99c8830 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Tue, 6 Feb 2024 14:53:15 +1300 Subject: Fl_Overlay_Window bound --- doc/fl_overlay_window.html | 150 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 150 insertions(+) create mode 100644 doc/fl_overlay_window.html (limited to 'doc/fl_overlay_window.html') diff --git a/doc/fl_overlay_window.html b/doc/fl_overlay_window.html new file mode 100644 index 0000000..fd0bcea --- /dev/null +++ b/doc/fl_overlay_window.html @@ -0,0 +1,150 @@ + + + + + + + Fl_Overlay_Window Binding Map + + + + + + +

Fl_Overlay_Window Binding Map

+ + + + + + + + + + +
Package name
Fl_Overlay_WindowFLTK.Widgets.Groups.Windows.Double.Overlay
+ + + + + + + + + + + + + + + + +
Types
Fl_Overlay_WindowOverlay_Window
 Overlay_Window_Reference
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Overlay_Window(int W, int H, const char *l=0);
+
+function Create
+       (W, H : in Integer;
+        Text : in String := "")
+    return Overlay_Window;
+
+Fl_Overlay_Window(int X, int Y, int W, int H, const char *l=0);
+
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String := "")
+    return Overlay_Window;
+
+int can_do_overlay();
+
+function Can_Do_Overlay
+       (This : in Overlay_Window)
+    return Boolean;
+
+virtual void draw_overlay()=0;
+
+procedure Draw_Overlay
+       (This : in out Overlay_Window) is null;
+
+void flush();
+
+procedure Flush
+       (This : in out Overlay_Window);
+
+void hide();
+
+procedure Hide
+       (This : in out Overlay_Window);
+
+void redraw_overlay();
+
+procedure Redraw_Overlay
+       (This : in out Overlay_Window);
+
+void resize(int, int, int, int);
+
+Use Resize/Reposition from FLTK.Widgets instead +
+void show();
+
+void show(int a, char **b);
+
+procedure Show
+       (This : in out Overlay_Window);
+
+ + + + + -- cgit