From 11d2b6c11604a1e355e3f9b40762f59b4d434e07 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Sun, 9 Feb 2025 21:53:20 +1300 Subject: Untangling of main Fl.H binding map docs --- doc/fl_(fltk-screen).html | 211 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 211 insertions(+) create mode 100644 doc/fl_(fltk-screen).html (limited to 'doc/fl_(fltk-screen).html') diff --git a/doc/fl_(fltk-screen).html b/doc/fl_(fltk-screen).html new file mode 100644 index 0000000..b44267c --- /dev/null +++ b/doc/fl_(fltk-screen).html @@ -0,0 +1,211 @@ + + + + + + Fl (FLTK.Screen) Binding Map + + + + + + +

Fl (FLTK.Screen) Binding Map

+ + +Back to Index + + + + + + + + + + +
Package name
FlFLTK.Screen
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Static Functions and Procedures
+static void display(const char *);
+
 
+static int h();
+
+function Get_H
+    return Integer;
+
+static int screen_count();
+
+function Count
+    return Integer;
+
+static void screen_dpi(float &h, float &v, int n=0);
+
+procedure DPI
+       (Horizontal, Vertical :    out Float;
+        Screen_Number        : in     Integer := 1);
+
+static int screen_num(int x, int y);
+
+function Containing
+       (X, Y : in Integer)
+    return Integer;
+
+static int screen_num(int x, int y, int w, int h);
+
+function Containing
+       (X, Y, W, H : in Integer)
+    return Integer;
+
+static void screen_work_area(int &X, int &Y,
+    int &W, int &H, int mx, int my);
+
+procedure Work_Area
+       (X, Y, W, H   :    out Integer;
+        Pos_X, Pos_Y : in     Integer);
+
+static void screen_work_area(int &X, int &Y,
+    int &W, int &H, int n);
+
+procedure Work_Area
+       (X, Y, W, H :    out Integer;
+        Screen_Num : in     Integer);
+
+static void screen_xywh(int &X, int &Y,
+    int &W, int &H);
+
+procedure Bounding_Rect
+       (X, Y, W, H : out Integer);
+
+static void screen_xywh(int &X, int &Y,
+    int &W, int &H, int mx, int my);
+
+procedure Bounding_Rect
+       (X, Y, W, H   :    out Integer;
+        Pos_X, Pos_Y : in     Integer);
+
+static void screen_xywh(int &X, int &Y,
+    int &W, int &H, int n);
+
+procedure Bounding_Rect
+       (X, Y, W, H :    out Integer;
+        Screen_Num : in     Integer);
+
+static void screen_xywh(int &X, int &Y,
+    int &W, int &H, int mx, int my, int mw, int mh);
+
+procedure Bounding_Rect
+       (X, Y, W, H     :    out Integer;
+        PX, PY, PW, PH : in     Integer);
+
+static void screen_work_area(int &X, int &Y,
+    int &W, int &H);
+
+procedure Work_Area
+       (X, Y, W, H : out Integer);
+
+static int w();
+
+function Get_W
+    return Integer;
+
+static int x();
+
+function Get_X
+    return Integer;
+
+static int y();
+
+function Get_Y
+    return Integer;
+
+ + + + + -- cgit