summaryrefslogtreecommitdiff
path: root/doc/enumerations.html
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-02-10 22:50:09 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-02-10 22:50:09 +1300
commit446989277ad276e9820e54ea1fb4ed550b93e998 (patch)
treea37115bfb16f215f93a46bd32829c3306e938cf3 /doc/enumerations.html
parent11d2b6c11604a1e355e3f9b40762f59b4d434e07 (diff)
Filled holes in Enumerations and FLTK (Screen) APIs
Diffstat (limited to 'doc/enumerations.html')
-rw-r--r--doc/enumerations.html80
1 files changed, 69 insertions, 11 deletions
diff --git a/doc/enumerations.html b/doc/enumerations.html
index 9106ff3..937a7a9 100644
--- a/doc/enumerations.html
+++ b/doc/enumerations.html
@@ -57,6 +57,11 @@
</tr>
<tr>
+ <td>float</td>
+ <td>Blend</td>
+ </tr>
+
+ <tr>
<td>Fl_Align</td>
<td>Alignment</td>
</tr>
@@ -72,7 +77,11 @@
</tr>
<tr>
- <td>#define</td>
+ <td>
+ #define FL_LEFT_MOUSE 1<br />
+ #define FL_MIDDLE_MOUSE 2<br />
+ #define FL_RIGHT_MOUSE 3
+ </td>
<td>Mouse_Button</td>
</tr>
@@ -142,21 +151,34 @@
<td><pre>
inline Fl_Boxtype fl_box(Fl_Boxtype b);
</pre></td>
-<td>&nbsp;</td>
+<td><pre>
+function Filled
+ (Box : in Box_Kind)
+ return Box_Kind;
+</pre></td>
</tr>
<tr>
<td><pre>
Fl_Color fl_color_average(Fl_Color c1, Fl_Color c2, float weight);
</pre></td>
-<td>&nbsp;</td>
+<td><pre>
+function Color_Average
+ (Tone1, Tone2 : in Color;
+ Weight : in Blend := 0.5)
+ return Color;
+</pre></td>
</tr>
<tr>
<td><pre>
inline Fl_Color fl_color_cube(int r, int g, int b);
</pre></td>
-<td>&nbsp;</td>
+<td><pre>
+function Color_Cube
+ (R, G, B : in Color_Component)
+ return Color;
+</pre></td>
</tr>
<tr>
@@ -174,49 +196,85 @@ function Contrast
<td><pre>
inline Fl_Color fl_darker(Fl_Color c);
</pre></td>
-<td>&nbsp;</td>
+<td><pre>
+function Darker
+ (Tone : in Color)
+ return Color;
+</pre></td>
</tr>
<tr>
<td><pre>
inline Fl_Boxtype fl_down(Fl_Boxtype b);
</pre></td>
-<td>&nbsp;</td>
+<td><pre>
+function Down
+ (Box : in Box_Kind)
+ return Box_Kind;
+</pre></td>
</tr>
<tr>
<td><pre>
inline Fl_Boxtype fl_frame(Fl_Boxtype b);
</pre></td>
-<td>&nbsp;</td>
+<td><pre>
+function Frame
+ (Box : in Box_Kind)
+ return Box_Kind;
+</pre></td>
</tr>
<tr>
<td><pre>
inline Fl_Color fl_gray_ramp(int i);
</pre></td>
-<td>&nbsp;</td>
+<td><pre>
+function Grey_Ramp
+ (Light : in Greyscale)
+ return Color;
+
+function Grey_Ramp
+ (Light : in Color_Component)
+ return Color;
+</pre></td>
</tr>
<tr>
<td><pre>
Fl_Color fl_inactive(Fl_Color c);
</pre></td>
-<td>&nbsp;</td>
+<td><pre>
+function Inactive
+ (Tone : in Color)
+ return Color;
+</pre></td>
</tr>
<tr>
<td><pre>
inline Fl_Color fl_lighter(Fl_Color c);
</pre></td>
-<td>&nbsp;</td>
+<td><pre>
+function Lighter
+ (Tone : in Color)
+ return Color;
+</pre></td>
</tr>
<tr>
<td><pre>
inline Fl_Color fl_rgb_color(uchar g);
</pre></td>
-<td>&nbsp;</td>
+<td><pre>
+function RGB_Color
+ (Light : in Greyscale)
+ return Color;
+
+function RGB_Color
+ (Light : in Color_Component)
+ return Color;
+</pre></td>
</tr>
<tr>