From ca9cca53a19145216cb0e00462db239e1194696d Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sun, 29 Apr 2018 00:39:36 +1000 Subject: FLTK.Event done, a whole bunch more polishing --- doc/fl_image_surface.html | 129 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 129 insertions(+) create mode 100644 doc/fl_image_surface.html (limited to 'doc/fl_image_surface.html') diff --git a/doc/fl_image_surface.html b/doc/fl_image_surface.html new file mode 100644 index 0000000..4450127 --- /dev/null +++ b/doc/fl_image_surface.html @@ -0,0 +1,129 @@ + + + + + + + Fl_Image_Surface Binding Map + + + + + + +

Fl_Image_Surface Binding Map

+ + + + + + + + + + +
Package name
Fl_Image_SurfaceFLTK.Devices.Surfaces.Image
+ + + + + + + + + + + + + + + + +
Types
Fl_Image_SurfaceImage_Surface
 Image_Surface_Reference
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Image_Surface(int w, int h, int highres=0);
+
+function Create
+       (W, H    : in Integer;
+        Highres : in Boolean := False)
+    return Image_Surface;
+
+const char * class_name();
+
 
+void draw(Fl_Widget *, int delta_x=0, int delta_y=0);
+
+procedure Draw_Widget
+       (This               : in out Image_Surface;
+        Item               : in     FLTK.Widgets.Widget'Class;
+        Offset_X, Offset_Y : in     Integer := 0);
+
+void draw_decorated_window(Fl_Window *win, int delta_x=0, int delta_y=0);
+
+procedure Draw_Decorated_Window
+       (This               : in out Image_Surface;
+        Item               : in     FLTK.Widgets.Groups.Windows.Window'Class;
+        Offset_X, Offset_Y : in     Integer := 0);
+
+Fl_Shared_Image * highres_image();
+
+function Get_Highres_Image
+       (This : in Image_Surface)
+    return FLTK.Images.Shared.Shared_Image;
+
+Fl_RGB_Image * image();
+
+function Get_Image
+       (This : in Image_Surface)
+    return FLTK.Images.RGB.RGB_Image;
+
+void set_current();
+
+procedure Set_Current
+       (This : in out Image_Surface);
+
+ + + + + -- cgit