Source: scribus/libpostscript/pslib.h
|
|
|
|
/***************************************************************************
pslib.h - description
-------------------
begin : Sat May 26 2001
copyright : (C) 2001 by Franz Schmid
email : Franz.Schmid@altmuehlnet.de
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef PSLIB_H
#define PSLIB_H
#include
#include
#include
#include
#include "scribusdoc.h"
/**
*@author Franz Schmid
* Diese Klasse erzeugt Postscript-Dateien
*/
class PSLib {
public:
PSLib(bool psart, SCFonts &AllFonts, QMap DocFonts, CListe DocColors, bool pdf = false);
virtual ~PSLib();
virtual bool PS_set_file(QString fn);
virtual void PS_set_Info(QString art, QString was);
virtual void PS_begin_doc(int Ori, float breite, float hoehe, int numpage);
virtual void PS_begin_page(float breite, float hoehe, struct Margs* Ma);
virtual void PS_end_page();
virtual void PS_rect(float x, float y, float b, float h);
virtual void PS_RoundRect(float x, float y, float b, float h, float r);
virtual void PS_circle(float r, float r2);
virtual void PS_curve(float x1, float y1, float x2, float y2, float x3, float y3);
virtual void PS_moveto(float x, float y);
virtual void PS_lineto(float x, float y);
virtual void PS_closepath();
virtual void PS_translate(float x, float y);
virtual void PS_scale(float x, float y);
virtual void PS_rotate(float x);
virtual void PS_clip();
virtual void PS_save();
virtual void PS_restore();
virtual void PS_setcmykcolor_fill(float c, float m, float y, float k);
virtual void PS_setcmykcolor_stroke(float c, float m, float y, float k);
virtual void PS_setlinewidth(float w);
virtual void PS_setdash(Qt::PenStyle st, Qt::PenCapStyle ca, Qt::PenJoinStyle jo);
virtual void PS_selectfont(QString f, int s);
virtual void PS_selectfontItalic(QString f, int s);
virtual void PS_fill();
virtual void PS_stroke();
virtual void PS_fill_stroke();
virtual void PS_newpath();
virtual void PS_GradientCol1(float c, float m, float y, float k);
virtual void PS_GradientCol2(float c, float m, float y, float k);
virtual void PS_LinGradient(float w, float h, int item, int grad);
virtual void PS_RadGradient(float w, float h, int item);
virtual void PS_underline(QCString ch, float x, float y);
virtual void PS_strikeout(QCString ch, float x, float y);
virtual void PS_show_xy(QCString ch, float x, float y);
virtual void PS_show(float x, float y);
virtual void PS_show_xyBold(QCString ch, float x, float y);
virtual void PS_image(float x, float y, QString fn, float scalex, float scaley, QString Name = "");
virtual void PS_plate(int nr);
virtual void PS_setGray();
virtual void PDF_Bookmark(QString text, uint Seite);
virtual void PDF_Annotation(QString text, float x, float y, float b, float h);
virtual void PS_close();
virtual void PS_TemplateStart(QString Name, float breite, float hoehe);
virtual void PS_TemplateEnd();
virtual void PS_UseTemplate(QString Name);
virtual void PS_ImageData(QString fn, QString Name);
private:
void PutSeite(QString c);
void PutDoc(QString c);
QString ToStr(float c);
QString IToStr(int c);
// char *toHex( uchar u );
// QString String2Hex(QString *in);
QString PSEncode(QString in);
bool Art;
QString Prolog;
QString Header;
QString Creator;
QString User;
QString Titel;
QString BBox;
QString BBoxH;
QString Farben;
QString FNamen;
QString PDev;
QString GrayCalc;
bool GraySc;
int Seiten;
QString FillColor;
QString StrokeColor;
QString GrColor1;
QString GrColor2;
float LineW;
QString Fonts;
QString FontDesc;
QMap UsedFonts;
bool isPDF;
QFile Spool;
bool CompAvail;
};
#endif
Generated by: paul on T6.linux on Tue Mar 18 23:32:13 2003, using kdoc 2.0a54. |