1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
/**
* Yudit Unicode Editor Source File
*
* GNU Copyright (C) 1997-2023 Gaspar Sinai <gaspar@yudit.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2,
* dated June 1991. See file COPYYING for details.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef SPostscript_h
#define SPostscript_h
#include "swindow/SCanvas.h"
#include "stoolkit/SExcept.h"
#include "stoolkit/SString.h"
#include "stoolkit/SProperties.h"
#include "stoolkit/SIOStream.h"
#include "stoolkit/SMatrix.h"
#include "stoolkit/SEvent.h"
/**
* @author: Gaspar Sinai <gaspar@yudit.org>
* @version: 2000-04-23
* This is a postscript renderer for yudit.
*/
class SPostscript : public SCanvas, public SEventTarget
{
public:
enum SMedia { A3, A4, A5, B4, B5, Executive, Folio, Ledger,
Legal, Letter, Quarto, Statement, Tabloid };
enum SOrientation { PORTRAIT, LANDSCAPE };
SPostscript (const SWriter& w, SMedia m, SOrientation o);
virtual ~SPostscript();
/* maybe we should move these to canvas */
unsigned int getWidth() const;
unsigned int getHeight() const;
int getX() const;
int getY() const;
bool open (bool background);
void newPage();
bool close ();
bool hasNative () const;
/* From SCanvas */
virtual bool cacheOn (bool on=true);
virtual bool beginImage (double x, double y, const SString& id, const SColor& background);
virtual void newpath ();
virtual void endImage ();
virtual void fill (const SPen& pen);
virtual void stroke (const SPen& pen);
virtual void moveto (double x, double y);
virtual void lineto (double x, double y);
virtual void curveto (double x0, double y0, double x1,
double y1, double x3, double y3);
virtual void closepath();
virtual void pushmatrix();
virtual void popmatrix();
virtual void scale (double x, double y);
virtual void translate (double x, double y);
virtual void rotate (double angle);
virtual void bitfont (const SPen& pen, double x, double y,
void* native, char* data, unsigned int len);
virtual void bitfill (const SColor& bg, int x, int y, unsigned int width, unsigned int height);
virtual void bitline (const SColor& fg, int x, int y, int tox, int toy);
virtual void bitpoint (const SColor& fg, int x, int y);
virtual void bitpoints (const SColor& fg, const int* x, const int* y,
unsigned int arraySize);
SString getCreationDate() const;
virtual SS_Matrix2D getCurrentMatrix() const;
virtual void putImage (int x, int y, const SImage& image);
virtual void setBackground(const SColor &color);
/* for background */
bool timeout (const SEventSource* s);
private:
void fill ();
unsigned int ticks;
STimer* timer;
virtual bool _beginImage (double x, double y, const SString& id);
bool writeString (const SString& str);
bool isUgly;
unsigned int pages;
unsigned int currentPage;
SS_MatrixStack matrix;
SMedia media;
SOrientation orientation;
bool status;
unsigned int width;
unsigned int height;
unsigned int widthMargin;
unsigned int heightMargin;
SWriter out;
SProperties cache;
SProperties cacheIDMap;
unsigned int cacheIDMapCount;
SString cacheID;
SString cacheCurrent;
double cacheOriginX;
double cacheOriginY;
SString creationDate;
protected:
/* From canvas. */
bool isCacheOn;
};
#endif /* SPostscript_h */
|