summaryrefslogtreecommitdiff
path: root/FL/Fl_PostScript.H
diff options
context:
space:
mode:
authormaxim nikonov <maxim.nikonov@hqo.co>2026-02-05 16:24:45 +0500
committermaxim nikonov <maxim.nikonov@hqo.co>2026-02-05 16:24:45 +0500
commitcdf2832347b8fdf0389cd373c2ead0ac5d071037 (patch)
tree96f9771aed0710899aa6cbba2a84dadfe76e996e /FL/Fl_PostScript.H
parentdb214d1145e46d527a46d1fc2519548d2c4d23f1 (diff)
wip
Diffstat (limited to 'FL/Fl_PostScript.H')
-rw-r--r--FL/Fl_PostScript.H38
1 files changed, 19 insertions, 19 deletions
diff --git a/FL/Fl_PostScript.H b/FL/Fl_PostScript.H
index 8de3f60c1..a0ccde431 100644
--- a/FL/Fl_PostScript.H
+++ b/FL/Fl_PostScript.H
@@ -91,7 +91,7 @@ public:
/** The destructor. */
~Fl_PostScript_File_Device();
/** Don't use with this class. */
- int begin_job(int pagecount, int* from, int* to, char **perr_message) override;
+ int begin_job(int pagecount, int* from, int* to, char **perr_message);
/** Begins the session where all graphics requests will go to a local PostScript file.
Opens a file dialog to select an output PostScript file.
This member function makes end_job() close the resulting PostScript file and display an
@@ -128,28 +128,28 @@ public:
return begin_job(ps_output, pagecount, format, layout);
}
- int begin_page (void) override;
- int printable_rect(int *w, int *h) override;
- void margins(int *left, int *top, int *right, int *bottom) override;
- void origin(int *x, int *y) override;
- void origin(int x, int y) override;
- void scale (float scale_x, float scale_y = 0.) override;
- void rotate(float angle) override;
- void translate(int x, int y) override;
- void untranslate(void) override;
- int end_page (void) override;
+ int begin_page (void);
+ int printable_rect(int *w, int *h);
+ void margins(int *left, int *top, int *right, int *bottom);
+ void origin(int *x, int *y);
+ void origin(int x, int y);
+ void scale (float scale_x, float scale_y = 0.);
+ void rotate(float angle);
+ void translate(int x, int y);
+ void untranslate(void);
+ int end_page (void);
/** Completes all PostScript output.
This also closes with \p fclose() the underlying file() unless close_command() was used to set another function.
*/
- void end_job(void) override;
+ void end_job(void);
/** Label of the PostScript file chooser window */
static const char *file_chooser_title;
/** Returns the underlying FILE* receiving all PostScript data */
FILE *file();
/** Sets the function end_job() calls to close the file() */
void close_command(Fl_PostScript_Close_Command cmd);
- void set_current() override;
- void end_current() override;
+ void set_current();
+ void end_current();
};
/** Encapsulated PostScript drawing surface.
@@ -198,13 +198,13 @@ public:
with fl_alert().
*/
~Fl_EPS_File_Surface();
- int printable_rect(int *w, int *h) override;
+ int printable_rect(int *w, int *h);
/** Returns the underlying FILE pointer */
FILE *file();
- void origin(int x, int y) override;
- void origin(int *px, int *py) override;
- void translate(int x, int y) override;
- void untranslate() override;
+ void origin(int x, int y);
+ void origin(int *px, int *py);
+ void translate(int x, int y);
+ void untranslate();
/** Completes all EPS output.
The only operation possible with the Fl_EPS_File_Surface object after calling close() is its destruction.
\return The status code of output operations to the FILE object. 0 indicates success. */