summaryrefslogtreecommitdiff
path: root/src/Postscript.H
diff options
context:
space:
mode:
authorJohannes Hofmann <johannes.hofmann@gmx.de>2004-07-09 19:27:00 +0000
committerJohannes Hofmann <johannes.hofmann@gmx.de>2004-07-09 19:27:00 +0000
commit7f36e6e9a45086ea306aa6ac88deb5de3106e3a0 (patch)
treebe4cb8e4bc6285419120fc328b236e4b89f40784 /src/Postscript.H
parenta22b493dae4d7c991b582aca565ef08b7a28ff13 (diff)
make things work again
make things work again
Diffstat (limited to 'src/Postscript.H')
-rw-r--r--src/Postscript.H10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/Postscript.H b/src/Postscript.H
index 13beb4e..bd4b4c2 100644
--- a/src/Postscript.H
+++ b/src/Postscript.H
@@ -1,5 +1,5 @@
//
-// "$Id: Postscript.H,v 1.1 2004/07/09 16:13:35 hofmann Exp $"
+// "$Id: Postscript.H,v 1.2 2004/07/09 21:27:00 hofmann Exp $"
//
// X11 header file for the Fast Light Tool Kit (FLTK).
//
@@ -44,6 +44,9 @@ class PSParser_1 : public PSParser {
};
class PSParser_2 : public PSParser {
+ private:
+ int inside;
+
public:
PSParser_2(PSEditWidget *p);
int parse(char *line);
@@ -52,7 +55,12 @@ class PSParser_2 : public PSParser {
class PSWriter {
protected:
PSEditWidget *pse;
+ char * pos_format;
+ char * size_format;
+ char * text_format;
+ char * glyph_format;
void write_string(FILE *out, char *s);
+ void write_internal_format(FILE *out);
int write_text(FILE *out, PSText *t);
virtual char *ps_header();
virtual char *ps_trailer();