summaryrefslogtreecommitdiff
path: root/src/PSEditor.H
diff options
context:
space:
mode:
authorJohannes Hofmann <johannes.hofmann@gmx.de>2004-10-26 14:58:49 +0000
committerJohannes Hofmann <johannes.hofmann@gmx.de>2004-10-26 14:58:49 +0000
commitbc7e8e0a1617eb26ec38b2a4e433efc9c7f85f6a (patch)
tree671eb1a5982f28729467d26dd431c92fe3058ce7 /src/PSEditor.H
parent95a26f47d0f801f5218c6e708c8e3e6c40a3b118 (diff)
cleanups
cleanups
Diffstat (limited to 'src/PSEditor.H')
-rw-r--r--src/PSEditor.H11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/PSEditor.H b/src/PSEditor.H
index 10efd39..34873fe 100644
--- a/src/PSEditor.H
+++ b/src/PSEditor.H
@@ -1,5 +1,5 @@
//
-// "$Id: PSEditor.H,v 1.6 2004/10/26 16:12:19 hofmann Exp $"
+// "$Id: PSEditor.H,v 1.7 2004/10/26 16:58:49 hofmann Exp $"
//
// X11 header file for the Fast Light Tool Kit (FLTK).
//
@@ -29,18 +29,23 @@
class PSEditor : public PSEditWidget {
private:
int tmp_fd;
+
int ps_level;
+
int x_last, y_last;
+
int handle(int event);
public:
PSEditor(int X,int Y,int W, int H);
+
int load(FILE *fp);
+
int load(char *f);
+
int save(const char* savefile);
+
int import(char *f);
- void set_ps_level(int l);
- int get_ps_level();
};