2020-10-28 16:19:05 +00:00
|
|
|
//
|
|
|
|
|
// Support for graphics output to PostScript file for the Fast Light Tool Kit (FLTK).
|
|
|
|
|
//
|
|
|
|
|
// Copyright 2010-2020 by Bill Spitzak and others.
|
|
|
|
|
//
|
|
|
|
|
// This library is free software. Distribution and use rights are outlined in
|
|
|
|
|
// the file "COPYING" which should have been included with this file. If this
|
|
|
|
|
// file is missing or damaged, see the license at:
|
|
|
|
|
//
|
|
|
|
|
// https://www.fltk.org/COPYING.php
|
|
|
|
|
//
|
|
|
|
|
// Please see the following page on how to report bugs and issues:
|
|
|
|
|
//
|
|
|
|
|
// https://www.fltk.org/bugs.php
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
/** \file Fl_Pango_PostScript_Graphics_Driver.H
|
|
|
|
|
Declaration of class Fl_PostScript_Graphics_Driver.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef FL_POSTSCRIPT_GRAPHICS_DRIVER_H
|
|
|
|
|
#define FL_POSTSCRIPT_GRAPHICS_DRIVER_H
|
|
|
|
|
|
2021-02-16 10:08:30 +00:00
|
|
|
#include <config.h>
|
2020-10-28 16:19:05 +00:00
|
|
|
#include <FL/Fl_PostScript.H>
|
|
|
|
|
|
|
|
|
|
#ifndef USE_PANGO
|
|
|
|
|
#define USE_PANGO 0
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
\cond DriverDev
|
|
|
|
|
\addtogroup DriverDeveloper
|
|
|
|
|
\{
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
PostScript graphical backend.
|
|
|
|
|
*/
|
2021-03-15 13:09:40 +00:00
|
|
|
#if USE_PANGO
|
|
|
|
|
|
|
|
|
|
#include "../Cairo/Fl_Cairo_Graphics_Driver.H"
|
|
|
|
|
|
|
|
|
|
class FL_EXPORT Fl_PostScript_Graphics_Driver : public Fl_Cairo_Graphics_Driver {
|
|
|
|
|
public:
|
|
|
|
|
FILE *output;
|
|
|
|
|
Fl_PostScript_Close_Command close_cmd_;
|
|
|
|
|
enum Fl_Paged_Device::Page_Format page_format_;
|
|
|
|
|
char *ps_filename_;
|
|
|
|
|
int nPages;
|
2021-05-26 20:01:35 +00:00
|
|
|
|
2021-03-15 13:09:40 +00:00
|
|
|
Fl_PostScript_Graphics_Driver();
|
|
|
|
|
~Fl_PostScript_Graphics_Driver();
|
|
|
|
|
void close_command(Fl_PostScript_Close_Command cmd){close_cmd_=cmd;};
|
|
|
|
|
FILE * file() {return output;};
|
|
|
|
|
void page(double pw, double ph, int media = 0);
|
|
|
|
|
void page(int format);
|
|
|
|
|
int start_postscript (int pagecount, enum Fl_Paged_Device::Page_Format format, enum Fl_Paged_Device::Page_Layout layout);
|
|
|
|
|
int start_eps(int width, int height);
|
|
|
|
|
void draw_image(const uchar *data, int ix, int iy, int iw, int ih, int D, int LD);
|
|
|
|
|
void draw_image(Fl_Draw_Image_Cb call, void* data, int x,int y, int w, int h, int delta=3) {
|
|
|
|
|
Fl_Cairo_Graphics_Driver::draw_image(call, data, x,y,w,h,delta);
|
|
|
|
|
}
|
|
|
|
|
void font(int f, int s);
|
|
|
|
|
Fl_Font font();
|
|
|
|
|
double width(const char *s, int n);
|
|
|
|
|
double width(unsigned u);
|
|
|
|
|
int height();
|
|
|
|
|
int descent();
|
|
|
|
|
void text_extents(const char *c, int n, int &dx, int &dy, int &w, int &h);
|
|
|
|
|
void color(Fl_Color c);
|
|
|
|
|
void color(uchar r, uchar g, uchar b) {Fl_Cairo_Graphics_Driver::color(r,g,b);}
|
|
|
|
|
Fl_Color color();
|
|
|
|
|
void point(int x, int y);
|
|
|
|
|
int not_clipped(int x, int y, int w, int h);
|
|
|
|
|
int clip_box(int x, int y, int w, int h, int &X, int &Y, int &W, int &H);
|
|
|
|
|
virtual PangoFontDescription* pango_font_description(Fl_Font fnum);
|
|
|
|
|
virtual int has_feature(driver_feature feature_mask) { return feature_mask & PRINTER; }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#else // USE_PANGO
|
2020-10-28 16:19:05 +00:00
|
|
|
|
|
|
|
|
class FL_EXPORT Fl_PostScript_Graphics_Driver : public Fl_Graphics_Driver {
|
|
|
|
|
private:
|
|
|
|
|
void transformed_draw_extra(const char* str, int n, double x, double y, int w, bool rtl);
|
|
|
|
|
void *prepare_rle85();
|
|
|
|
|
void write_rle85(uchar b, void *data);
|
|
|
|
|
void close_rle85(void *data);
|
|
|
|
|
void *prepare85();
|
|
|
|
|
void write85(void *data, const uchar *p, int len);
|
|
|
|
|
void close85(void *data);
|
|
|
|
|
int scale_for_image_(Fl_Image *img, int XP, int YP, int WP, int HP,int cx, int cy);
|
|
|
|
|
protected:
|
|
|
|
|
uchar **mask_bitmap() {return &mask;}
|
|
|
|
|
public:
|
|
|
|
|
Fl_PostScript_Graphics_Driver();
|
2021-03-15 07:13:09 +00:00
|
|
|
enum SHAPE {NONE=0, LINE, LOOP, POLYGON, POINTS};
|
2020-10-28 16:19:05 +00:00
|
|
|
|
|
|
|
|
class Clip {
|
|
|
|
|
public:
|
|
|
|
|
int x, y, w, h;
|
|
|
|
|
Clip *prev;
|
|
|
|
|
};
|
|
|
|
|
Clip * clip_;
|
|
|
|
|
|
|
|
|
|
int lang_level_;
|
|
|
|
|
int gap_;
|
|
|
|
|
int pages_;
|
2021-03-15 07:13:09 +00:00
|
|
|
int interpolate_; //interpolation of images
|
|
|
|
|
uchar * mask;
|
|
|
|
|
int mx; // width of mask;
|
|
|
|
|
int my; // mask lines
|
|
|
|
|
int page_policy_;
|
|
|
|
|
void page_policy(int p);
|
|
|
|
|
int page_policy(){return page_policy_;};
|
|
|
|
|
int alpha_mask(const uchar * data, int w, int h, int D, int LD=0);
|
|
|
|
|
/** Shields output PostScript data from modifications of the current locale.
|
|
|
|
|
It typically avoids PostScript errors caused if the current locale uses comma instead of dot
|
|
|
|
|
as "decimal point".
|
|
|
|
|
\param format directives controlling output PostScript data
|
|
|
|
|
\return value returned by vfprintf() call
|
|
|
|
|
*/
|
|
|
|
|
int clocale_printf(const char *format, ...);
|
2020-10-28 16:19:05 +00:00
|
|
|
|
2021-03-15 07:13:09 +00:00
|
|
|
enum SHAPE shape_;
|
2020-10-28 16:19:05 +00:00
|
|
|
int linewidth_;// need for clipping, lang level 1-2
|
|
|
|
|
int linestyle_;//
|
|
|
|
|
unsigned char cr_,cg_,cb_;
|
|
|
|
|
char linedash_[256];//should be enough
|
|
|
|
|
void concat(); // transform ror scalable dradings...
|
|
|
|
|
void reconcat(); //invert
|
|
|
|
|
void recover(); //recovers the state after grestore (such as line styles...)
|
|
|
|
|
void reset();
|
|
|
|
|
|
|
|
|
|
Fl_PostScript_Close_Command close_cmd_;
|
|
|
|
|
int nPages;
|
2021-03-15 07:13:09 +00:00
|
|
|
//int orientation_;
|
2020-10-28 16:19:05 +00:00
|
|
|
|
|
|
|
|
float scale_x;
|
|
|
|
|
float scale_y;
|
|
|
|
|
float angle;
|
|
|
|
|
int left_margin;
|
|
|
|
|
int top_margin;
|
|
|
|
|
|
|
|
|
|
FILE *output;
|
|
|
|
|
double pw_, ph_;
|
|
|
|
|
|
|
|
|
|
uchar bg_r, bg_g, bg_b;
|
|
|
|
|
int start_postscript (int pagecount, enum Fl_Paged_Device::Page_Format format, enum Fl_Paged_Device::Page_Layout layout);
|
|
|
|
|
int start_eps(int width, int height);
|
|
|
|
|
void transformed_draw(const char* s, int n, double x, double y); //precise text placing
|
2021-03-15 07:13:09 +00:00
|
|
|
//void transformed_draw(const char* s, double x, double y);
|
2020-10-28 16:19:05 +00:00
|
|
|
|
|
|
|
|
enum Fl_Paged_Device::Page_Format page_format_;
|
|
|
|
|
char *ps_filename_;
|
|
|
|
|
|
|
|
|
|
void close_command(Fl_PostScript_Close_Command cmd){close_cmd_=cmd;};
|
|
|
|
|
FILE * file() {return output;};
|
|
|
|
|
//void orientation (int o);
|
|
|
|
|
//Fl_PostScript_Graphics_Driver(FILE *o, int lang_level, int pages = 0); // ps (also multi-page) constructor
|
2021-03-15 07:13:09 +00:00
|
|
|
//void interpolate(int i){interpolate_=i;};
|
|
|
|
|
//int interpolate(){return interpolate_;}
|
2020-10-28 16:19:05 +00:00
|
|
|
|
|
|
|
|
void page(double pw, double ph, int media = 0);
|
|
|
|
|
void page(int format);
|
|
|
|
|
|
|
|
|
|
// implementation of drawing methods
|
|
|
|
|
void color(Fl_Color c);
|
|
|
|
|
void color(uchar r, uchar g, uchar b);
|
2021-03-01 10:20:03 +00:00
|
|
|
Fl_Color color();
|
2020-10-28 16:19:05 +00:00
|
|
|
|
|
|
|
|
void push_clip(int x, int y, int w, int h);
|
|
|
|
|
int clip_box(int x, int y, int w, int h, int &X, int &Y, int &W, int &H);
|
|
|
|
|
int not_clipped(int x, int y, int w, int h);
|
|
|
|
|
void push_no_clip();
|
|
|
|
|
void pop_clip();
|
|
|
|
|
|
|
|
|
|
void line_style(int style, int width=0, char* dashes=0);
|
|
|
|
|
|
|
|
|
|
void rect(int x, int y, int w, int h);
|
|
|
|
|
void rectf(int x, int y, int w, int h);
|
|
|
|
|
|
|
|
|
|
void xyline(int x, int y, int x1);
|
|
|
|
|
void xyline(int x, int y, int x1, int y2);
|
|
|
|
|
void xyline(int x, int y, int x1, int y2, int x3);
|
|
|
|
|
|
|
|
|
|
void yxline(int x, int y, int y1);
|
|
|
|
|
void yxline(int x, int y, int y1, int x2);
|
|
|
|
|
void yxline(int x, int y, int y1, int x2, int y3);
|
|
|
|
|
|
|
|
|
|
void line(int x1, int y1, int x2, int y2);
|
|
|
|
|
void line(int x1, int y1, int x2, int y2, int x3, int y3);
|
|
|
|
|
|
|
|
|
|
void loop(int x0, int y0, int x1, int y1, int x2, int y2);
|
|
|
|
|
void loop(int x0, int y0, int x1, int y1, int x2, int y2, int x3, int y3);
|
|
|
|
|
void polygon(int x0, int y0, int x1, int y1, int x2, int y2);
|
|
|
|
|
void polygon(int x0, int y0, int x1, int y1, int x2, int y2, int x3, int y3);
|
|
|
|
|
void point(int x, int y);
|
|
|
|
|
|
|
|
|
|
void begin_points();
|
|
|
|
|
void begin_line();
|
|
|
|
|
void begin_loop();
|
|
|
|
|
void begin_polygon();
|
|
|
|
|
void vertex(double x, double y);
|
|
|
|
|
void curve(double x, double y, double x1, double y1, double x2, double y2, double x3, double y3);
|
|
|
|
|
void circle(double x, double y, double r);
|
|
|
|
|
void arc(double x, double y, double r, double start, double a);
|
|
|
|
|
void arc(int x, int y, int w, int h, double a1, double a2);
|
|
|
|
|
void pie(int x, int y, int w, int h, double a1, double a2);
|
|
|
|
|
void end_points();
|
|
|
|
|
void end_line();
|
|
|
|
|
void end_loop();
|
|
|
|
|
void end_polygon();
|
|
|
|
|
void begin_complex_polygon(){begin_polygon();};
|
|
|
|
|
void gap(){gap_=1;};
|
|
|
|
|
void end_complex_polygon(){end_polygon();};
|
|
|
|
|
void transformed_vertex(double x, double y);
|
|
|
|
|
|
|
|
|
|
void draw_image(const uchar* d, int x,int y,int w,int h, int delta=3, int ldelta=0);
|
|
|
|
|
void draw_image_mono(const uchar* d, int x,int y,int w,int h, int delta=1, int ld=0);
|
|
|
|
|
void draw_image(Fl_Draw_Image_Cb call, void* data, int x,int y, int w, int h, int delta=3);
|
|
|
|
|
void draw_image_mono(Fl_Draw_Image_Cb call, void* data, int x,int y, int w, int h, int delta=1);
|
|
|
|
|
|
|
|
|
|
void draw(const char* s, int nBytes, int x, int y) {transformed_draw(s,nBytes,x,y); };
|
|
|
|
|
void draw(const char* s, int nBytes, float x, float y) {transformed_draw(s,nBytes,x,y); };
|
|
|
|
|
void draw(int angle, const char *str, int n, int x, int y);
|
|
|
|
|
void rtl_draw(const char* s, int n, int x, int y);
|
|
|
|
|
void font(int face, int size);
|
2021-03-01 10:20:03 +00:00
|
|
|
Fl_Font font();
|
2020-10-28 16:19:05 +00:00
|
|
|
double width(const char *, int);
|
|
|
|
|
double width(unsigned int u);
|
|
|
|
|
void text_extents(const char *c, int n, int &dx, int &dy, int &w, int &h);
|
|
|
|
|
int height();
|
|
|
|
|
int descent();
|
|
|
|
|
void draw_pixmap(Fl_Pixmap * pxm,int XP, int YP, int WP, int HP, int cx, int cy);
|
|
|
|
|
void draw_bitmap(Fl_Bitmap * bitmap,int XP, int YP, int WP, int HP, int cx, int cy);
|
|
|
|
|
void draw_rgb(Fl_RGB_Image * rgb,int XP, int YP, int WP, int HP, int cx, int cy);
|
|
|
|
|
~Fl_PostScript_Graphics_Driver();
|
|
|
|
|
// ---
|
|
|
|
|
Fl_Bitmask create_bitmask(int w, int h, const uchar *array) { return 0L; }
|
|
|
|
|
virtual int has_feature(driver_feature feature_mask) { return feature_mask & PRINTER; }
|
|
|
|
|
|
|
|
|
|
void ps_origin(int x, int y);
|
|
|
|
|
void ps_translate(int, int);
|
|
|
|
|
void ps_untranslate();
|
|
|
|
|
};
|
|
|
|
|
|
2021-03-15 13:09:40 +00:00
|
|
|
#endif // USE_PANGO
|
2020-10-28 16:19:05 +00:00
|
|
|
/**
|
|
|
|
|
\}
|
|
|
|
|
\endcond
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#endif // FL_POSTSCRIPT_GRAPHICS_DRIVER_H
|