Changeset 420 for trunk/Jgraph/jgraph.h


Ignore:
Timestamp:
02/27/08 07:13:31 (16 years ago)
Author:
Nicholas Riley
Message:

Jgraph: my changes - ANSIfication, few minor bug fixes; works on OS X 10.5 now

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Jgraph/jgraph.h

    r418 r420  
    241241extern char PTYPES[];
    242242extern int NPATTERNS;
     243
     244void new_graphs(Graphs gs);
     245
     246/* Stuff defined in printline.c */
     247
     248void print_label(Label l);
     249void set_comment(int c);
     250void comment(char *s);
     251void gsave(void);
     252void grestore(void);
     253void setlinewidth(float size);
     254void setlinestyle(char style, Flist glist);
     255void print_ebar(float x1, float y1, float x2, float ms, char orientation);
     256void start_line(float x1, float y1, Curve c);
     257void bezier_control(float x1, float y1);
     258void bezier_end(float x1, float y1);
     259void end_line(void);
     260void setfill(float x, float y, char t, float f[], char p, float a);
     261void cont_line(float x1, float y1);
     262void setgray(char t, float f[]);
     263void printline(float x1, float y1, float x2, float y2, char orientation);
     264void start_poly(float x1, float y1);
     265void cont_poly(float x1, float y1);
     266void end_poly(float x, float y, char ftype, float fill[],
     267              char pattern, float parg);
     268void printellipse(float x, float y, float radius1, float radius2,
     269                  char ftype, float fill[], char pattern, float parg);
     270void setfont(char *f, float s);
     271
     272/* Stuff defined in edit.c */
     273
     274void copy_label(Label l1, Label l2);
     275void edit_graphs(Graphs gs);
     276
     277/* Stuff defined in token.c */
     278
     279void set_input_file(char *s);
     280int getint(int *i);
     281int getstring(char *s);
     282int getfloat(float *f);
     283void rejecttoken(void);
     284
     285/* Stuff defined in process.c */
     286
     287void process_graphs(Graphs gs);
     288
     289/* Stuff defined in show.c */
     290
     291void show_graphs(Graphs gs);
     292
     293/* Stuff defined in draw.c */
     294
     295void draw_graphs(Graphs gs, int pp, int landscape);
Note: See TracChangeset for help on using the changeset viewer.