From f18ea4474bb4905a00e0b39e7205c177ee994196 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Tue, 20 Feb 2024 18:04:23 +1300 Subject: Improved binding for the FLTK.Images package subtree --- doc/fl_rgb_image.html | 64 ++++++++++++++++++++++++++++++++++++--------------- 1 file changed, 46 insertions(+), 18 deletions(-) (limited to 'doc/fl_rgb_image.html') diff --git a/doc/fl_rgb_image.html b/doc/fl_rgb_image.html index 3ab1b01..f85686e 100644 --- a/doc/fl_rgb_image.html +++ b/doc/fl_rgb_image.html @@ -46,6 +46,33 @@ + + + + + + + + + + + + + +
Static Functions and Procedures
+static void max_size(size_t size);
+
+procedure Set_Max_Size
+       (Value : in Natural);
+
+static size_t max_size();
+
+function Get_Max_Size
+    return Natural;
+
+ + + @@ -53,14 +80,26 @@ - + - + @@ -135,35 +174,24 @@ procedure Draw - + - + - - - - - - - - - -
Functions and Procedures
 Fl_RGB_Image(const uchar *bits, int W, int H, int D=3, int LD=0);
 
 
+function Create
+       (Data          : in Color_Component_Array;
+        Width, Height : in Natural;
+        Depth         : in Natural := 3;
+        Line_Data     : in Natural := 0)
+    return RGB_Image;
+
 Fl_RGB_Image(const Fl_Pixmap *pxm, Fl_Color bg=FL_GRAY);
 
 
+function Create
+       (Data       : in FLTK.Images.Pixmaps.Pixmap;
+        Background : in Color := Background_Color)
+    return RGB_Image;
+
 virtual void label(Fl_Widget *w);
 
 Not applicable as the original is marked as obsolete
 virtual void label(Fl_Menu_Item *m);
 
 Not applicable as the original is marked as obsolete
-static void max_size(size_t size);
-
 
-static size_t max_size();
+virtual void uncache();
 
 
-virtual void uncache();
+procedure Uncache
+       (This : in out RGB_Image);
 
 
-- cgit