From ae3aaf71338960e85d27c88d7004497409c6a6d9 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sat, 21 Apr 2018 00:19:09 +1000 Subject: More polishing, fixing of minor overlooked things, etc --- doc/fl_image.html | 270 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 270 insertions(+) create mode 100644 doc/fl_image.html (limited to 'doc/fl_image.html') diff --git a/doc/fl_image.html b/doc/fl_image.html new file mode 100644 index 0000000..4708f3f --- /dev/null +++ b/doc/fl_image.html @@ -0,0 +1,270 @@ + + + + + + + Fl_Image Binding Map + + + + + + +

Fl_Image Binding Map

+ + + + + + + + + + +
Package name
Fl_ImageFLTK.Images
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Types
Fl_ImageImage
 Image_Reference
Fl_RGB_ScalingScaling_Kind
 Blend
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Image(int W, int H, int D);
+
+function Create
+       (Width, Height, Depth : in Natural)
+    return Image;
+
+virtual void color_average(Fl_Color c, float i);
+
+procedure Color_Average
+       (This   : in out Image;
+        Col    : in     Color;
+        Amount : in     Blend);
+
+virtual Fl_Image * copy(int W, int H);
+
+function Copy
+       (This          : in Image;
+        Width, Height : in Natural)
+    return Image'Class;
+
+Fl_Image * copy();
+
+function Copy
+       (This : in Image)
+    return Image'Class;
+
+int count() const;
+
 
+int d() const;
+
+function Get_D
+       (This : in Image)
+    return Natural;
+
+const char * const * data() const;
+
 
+virtual void desaturate();
+
+procedure Desaturate
+       (This : in out Image);
+
+virtual void draw(int X, int Y, int W, int H, int cx=0, int cy=0);
+
+procedure Draw
+       (This       : in Image;
+        X, Y, W, H : in Integer;
+        CX, CY     : in Integer := 0);
+
+void draw(int X, int Y);
+
+procedure Draw
+       (This : in Image;
+        X, Y : in Integer);
+
+void draw_empty(int X, int Y);
+
+procedure Draw_Empty
+       (This : in Image;
+        X, Y : in Integer);
+
+int fail();
+
+function Is_Empty
+       (This : in Image)
+    return Boolean;
+
+int h() const;
+
+function Get_H
+       (This : in Image)
+    return Natural;
+
+void inactive();
+
+procedure Inactive
+       (This : in out Image);
+
+virtual void label(Fl_Widget *w);
+
 
+virtual void label(Fl_Menu_Item *m);
+
 
+int ld() const;
+
 
+static void RGB_scaling(Fl_RGB_Scaling);
+
+procedure Set_Copy_Algorithm
+       (To : in Scaling_Kind);
+
+static Fl_RGB_Scaling RGB_scaling();
+
+function Get_Copy_Algorithm
+    return Scaling_Kind;
+
+virtual void uncache();
+
 
+int w() const;
+
+function Get_W
+       (This : in Image)
+    return Natural;
+
+ + + + + -- cgit