Subversion Repositories wimsdev

Rev

Rev 15111 | Rev 15601 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 15111 Rev 15348
Line 289... Line 289...
289
#define TRACE_CANVAS    10
289
#define TRACE_CANVAS    10
290
#define JSPLOT_CANVAS   100 /* JSPLOT_canvas will be increased with every added inputfield...should not conflict with other images*/
290
#define JSPLOT_CANVAS   100 /* JSPLOT_canvas will be increased with every added inputfield...should not conflict with other images*/
291
#define FILL_CANVAS     200 /* will be increase with every fill */
291
#define FILL_CANVAS     200 /* will be increase with every fill */
292
#define USERDRAW_JSPLOT 300 /* USERDRAW_JSPLOT will be increased with every added inputfield...should not conflict with other images*/
292
#define USERDRAW_JSPLOT 300 /* USERDRAW_JSPLOT will be increased with every added inputfield...should not conflict with other images*/
293
#define CLICKFILL_CANVAS 400 /* will be increase with every click fill */
293
#define CLICKFILL_CANVAS 400 /* will be increase with every click fill */
294
#define BOXPLOT_CANVAS  500 /* will increase with every new boxplot */ 
294
#define BOXPLOT_CANVAS  500 /* will increase with every new boxplot */
295
#define NUMBERLINE_CANVAS 600
295
#define NUMBERLINE_CANVAS 600
296
#define MULTIDRAW_CANVAS        1000 /* + >25 draw types... 1001=points*/
296
#define MULTIDRAW_CANVAS        1000 /* + >25 draw types... 1001=points*/
297
#define ZOOM_CANVAS     1100
297
#define ZOOM_CANVAS     1100
298
#define STATIC_IMAGE_CANVAS 700
298
#define STATIC_IMAGE_CANVAS 700
299
#ifndef STD_H
299
#ifndef STD_H
Line 310... Line 310...
310
#endif
310
#endif
311
 
311
 
312
#endif
312
#endif
313
void    add_to_buffer(char *tmp); /* add tmp_buffer to the buffer */
313
void    add_to_buffer(char *tmp); /* add tmp_buffer to the buffer */
314
void    check_string_length(int length);
314
void    check_string_length(int length);
315
void *tmp_buffer;
315
extern void *tmp_buffer;
316
 
316
 
317
void rotate(int num,double angle,double center[],int incr);
317
void rotate(int num,double angle,double center[],int incr);
318
void transform(int num,int incr);
318
void transform(int num,int incr);
319
void add_read_canvas(int type_reply,int reply_precision);
319
void add_read_canvas(int type_reply,int reply_precision);
320
void add_javascript_function();
320
void add_javascript_function();
Line 386... Line 386...
386
extern int barchart_cnt;
386
extern int barchart_cnt;
387
extern int legend_cnt;
387
extern int legend_cnt;
388
extern int use_axis;
388
extern int use_axis;
389
extern int use_axis_numbering;
389
extern int use_axis_numbering;
390
 
390
 
391
FILE    *js_include_file;
391
extern FILE     *js_include_file;
392
/* used multidraw primitives : identifier in canvasmultidraw.c is index of this array
392
/* used multidraw primitives : identifier in canvasmultidraw.c is index of this array
393
static char multidraw_primitives[MAX_MULTI_PRIMITIVES][32] = {"point","points","circle","circles",
393
static char multidraw_primitives[MAX_MULTI_PRIMITIVES][32] = {"point","points","circle","circles",
394
"line","lines","segment","segments",
394
"line","lines","segment","segments",
395
"arrow","arrows","triangle","triangles",
395
"arrow","arrows","triangle","triangles",
396
"closedpoly","text","rect","rects",
396
"closedpoly","text","rect","rects",
397
"poly","polys","parallelogram","parallelograms",
397
"poly","polys","parallelogram","parallelograms",