From b3f9e96403aa5cb9d7db2330aa579356d1d58b6f Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Mon, 23 Dec 2024 17:02:34 +1300 Subject: Tweaked the names of Surface_Device subhierarchy --- doc/fl_copy_surface.html | 2 +- doc/fl_image_surface.html | 2 +- doc/fl_paged_device.html | 45 +++++++++++++++++++++++---------------------- doc/fl_printer.html | 5 +++-- doc/fl_surface_device.html | 2 +- doc/index.html | 10 +++++----- 6 files changed, 34 insertions(+), 32 deletions(-) (limited to 'doc') diff --git a/doc/fl_copy_surface.html b/doc/fl_copy_surface.html index 65c78a5..c022c79 100644 --- a/doc/fl_copy_surface.html +++ b/doc/fl_copy_surface.html @@ -21,7 +21,7 @@ Fl_Copy_Surface - FLTK.Devices.Surfaces.Copy + FLTK.Devices.Surface.Copy diff --git a/doc/fl_image_surface.html b/doc/fl_image_surface.html index 8b4036e..612fe99 100644 --- a/doc/fl_image_surface.html +++ b/doc/fl_image_surface.html @@ -21,7 +21,7 @@ Fl_Image_Surface - FLTK.Devices.Surfaces.Image + FLTK.Devices.Surface.Image diff --git a/doc/fl_paged_device.html b/doc/fl_paged_device.html index 1b2a9d9..42926f9 100644 --- a/doc/fl_paged_device.html +++ b/doc/fl_paged_device.html @@ -21,7 +21,7 @@ Fl_Paged_Device - FLTK.Devices.Surfaces.Paged + FLTK.Devices.Surface.Paged @@ -33,12 +33,12 @@ Fl_Paged_Device - Paged_Surface + Paged_Device   - Paged_Surface_Reference + Paged_Device_Reference @@ -64,7 +64,7 @@ Fl_Paged_Device();
 function Create
-    return Paged_Surface;
+    return Paged_Device;
 
@@ -81,7 +81,7 @@ virtual void end_job(void);
 procedure End_Job
-       (This : in out Paged_Surface);
+       (This : in out Paged_Device);
 
@@ -91,7 +91,7 @@ virtual int end_page(void);
 procedure End_Page
-       (This : in out Paged_Surface);
+       (This : in out Paged_Device);
 
@@ -101,7 +101,7 @@ virtual void margins(int *left, int *top, int *right, int *bottom);
 procedure Get_Margins
-       (This                     : in     Paged_Surface;
+       (This                     : in     Paged_Device;
         Left, Top, Right, Bottom :    out Integer);
 
@@ -112,7 +112,7 @@ virtual void origin(int x, int y);
 procedure Set_Origin
-       (This : in out Paged_Surface;
+       (This : in out Paged_Device;
         X, Y : in     Integer);
 
@@ -123,7 +123,7 @@ virtual void origin(int *x, int *y);
 procedure Get_Origin
-       (This : in     Paged_Surface;
+       (This : in     Paged_Device;
         X, Y :    out Integer);
 
@@ -134,7 +134,7 @@ virtual void print_widget(Fl_Widget *widget, int delta_x=0, int delta_y=0);
 procedure Print_Widget
-       (This               : in out Paged_Surface;
+       (This               : in out Paged_Device;
         Item               : in     FLTK.Widgets.Widget'Class;
         Offset_X, Offset_Y : in     Integer := 0);
 
@@ -146,7 +146,7 @@ void print_window(Fl_Window *win, int x_offset=0, int y_offset=0);
 procedure Print_Window
-       (This               : in out Paged_Surface;
+       (This               : in out Paged_Device;
         Item               : in     FLTK.Widgets.Groups.Windows.Window'Class;
         Offset_X, Offset_Y : in     Integer := 0);
 
@@ -154,11 +154,12 @@ procedure Print_Window
-virtual void print_window_part(Fl_Window *win, int x, int y, int w, int h, int delta_x=0, int delta_y=0);
+virtual void print_window_part(Fl_Window *win, int x, int y, int w,
+    int h, int delta_x=0, int delta_y=0);
 
 procedure Print_Window_Part
-       (This               : in out Paged_Surface;
+       (This               : in out Paged_Device;
         Item               : in     FLTK.Widgets.Groups.Windows.Window'Class;
         X, Y, W, H         : in     Integer;
         Offset_X, Offset_Y : in     Integer := 0);
@@ -171,7 +172,7 @@ virtual int printable_rect(int *w, int *h);
 
 procedure Get_Printable_Rect
-       (This : in     Paged_Surface;
+       (This : in     Paged_Device;
         W, H :    out Integer);
 
@@ -182,7 +183,7 @@ virtual void rotate(float angle);
 procedure Rotate
-       (This    : in out Paged_Surface;
+       (This    : in out Paged_Device;
         Degrees : in     Float);
 
@@ -193,11 +194,11 @@ virtual void scale(float scale_x, float scale_y=0);
 procedure Scale
-       (This   : in out Paged_Surface;
+       (This   : in out Paged_Device;
         Factor : in     Float);
 
 procedure Scale
-       (This               : in out Paged_Surface;
+       (This               : in out Paged_Device;
         Factor_X, Factor_Y : in     Float);
 
@@ -208,11 +209,11 @@ virtual int start_job(int pagecount, int *frompage=NULL, int *topage=NULL);
 procedure Start_Job
-       (This  : in out Paged_Surface;
+       (This  : in out Paged_Device;
         Count : in     Natural);
 
 procedure Start_Job
-       (This     : in out Paged_Surface;
+       (This     : in out Paged_Device;
         Count    : in     Natural;
         From, To : in     Positive);
 
@@ -224,7 +225,7 @@ virtual int start_page(void);
 procedure Start_Page
-       (This : in out Paged_Surface);
+       (This : in out Paged_Device);
 
@@ -234,7 +235,7 @@ virtual void translate(int x, int y);
 procedure Translate
-       (This             : in out Paged_Surface;
+       (This             : in out Paged_Device;
         Delta_X, Delta_Y : in     Integer);
 
@@ -245,7 +246,7 @@ virtual void untranslate(void);
 procedure Untranslate
-       (This : in out Paged_Surface);
+       (This : in out Paged_Device);
 
diff --git a/doc/fl_printer.html b/doc/fl_printer.html index e827131..55c2d3e 100644 --- a/doc/fl_printer.html +++ b/doc/fl_printer.html @@ -21,7 +21,7 @@ Fl_Printer - FLTK.Devices.Surfaces.Paged.Printers + FLTK.Devices.Surface.Paged.Printers @@ -139,7 +139,8 @@ procedure Print_Widget
-void print_window_part(Fl_Window *win, int x, int y, int w, int h, int delta_x=0, int delta_y=0);
+void print_window_part(Fl_Window *win, int x, int y, int w, int h,
+    int delta_x=0, int delta_y=0);
 
 procedure Print_Window_Part
diff --git a/doc/fl_surface_device.html b/doc/fl_surface_device.html
index 548b198..f4fa6e4 100644
--- a/doc/fl_surface_device.html
+++ b/doc/fl_surface_device.html
@@ -21,7 +21,7 @@
 
   
     Fl_Surface_Device
-    FLTK.Devices.Surfaces
+    FLTK.Devices.Surface
   
 
 
diff --git a/doc/index.html b/doc/index.html
index 4e7357d..01b4bc7 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -139,11 +139,11 @@
   
  • FLTK.Asks
  • FLTK.Devices
  • FLTK.Devices.Graphics
  • -
  • FLTK.Devices.Surfaces
  • -
  • FLTK.Devices.Surfaces.Copy
  • -
  • FLTK.Devices.Surfaces.Image
  • -
  • FLTK.Devices.Surfaces.Paged
  • -
  • FLTK.Devices.Surfaces.Paged.Printers
  • +
  • FLTK.Devices.Surface
  • +
  • FLTK.Devices.Surface.Copy
  • +
  • FLTK.Devices.Surface.Image
  • +
  • FLTK.Devices.Surface.Paged
  • +
  • FLTK.Devices.Surface.Paged.Printers
  • FLTK.Draw
  • FLTK.Environment
  • FLTK.Errors
  • -- cgit