Subversion Repositories wimsdev

Rev

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

Rev 14044 Rev 14057
Line 353... Line 353...
353
void add_zoom_buttons(FILE *js_include_file,int canvas_root_id,char *stroke_color,double stroke_opacity);
353
void add_zoom_buttons(FILE *js_include_file,int canvas_root_id,char *stroke_color,double stroke_opacity);
354
void add_js_tooltip(int canvas_root_id,char *tooltip_text,char *bgcolor,int xsize,int ysize);
354
void add_js_tooltip(int canvas_root_id,char *tooltip_text,char *bgcolor,int xsize,int ysize);
355
void add_js_popup(int canvas_root_id,int xsize,int ysize,char *getfile_cmd);
355
void add_js_popup(int canvas_root_id,int xsize,int ysize,char *getfile_cmd);
356
void add_input_jsfunction(FILE *js_include_file, int canvas_root_id,char *input_style,char *input_label,int input_cnt,char *stroke_color,float stroke_opacity,int line_width,int use_dashed,int dashtype0,int dashtype1,int font_size);
356
void add_input_jsfunction(FILE *js_include_file, int canvas_root_id,char *input_style,char *input_label,int input_cnt,char *stroke_color,float stroke_opacity,int line_width,int use_dashed,int dashtype0,int dashtype1,int font_size);
357
void add_rawmath(FILE *js_include_file);
357
void add_rawmath(FILE *js_include_file);
358
void add_js_protractor(FILE *js_include_file,int canvas_root_id,int type,double xcenter,double ycenter,int size,char *font,char *stroke_color,double stroke_opacity,char *fill_color,double fill_opacity,int line_width,int use_scale,int dynamic);
358
void add_js_protractor(FILE *js_include_file,int canvas_root_id,int type,double xcenter,double ycenter,int size,char *font,char *stroke_color,double stroke_opacity,char *fill_color,double fill_opacity,int line_width,int use_scale,int dynamic,int use_snap);
359
void add_js_ruler(FILE *js_include_file,int canvas_root_id,double x,double y,double sizex,double sizey,char *font,char *stroke_color,double stroke_opacity,char *fill_color,double fill_opacity,int line_width,int dynamic);
359
void add_js_ruler(FILE *js_include_file,int canvas_root_id,double x,double y,double sizex,double sizey,char *font,char *stroke_color,double stroke_opacity,char *fill_color,double fill_opacity,int line_width,int dynamic,int use_snap);
360
void add_color_palette(FILE *js_include_file,int canvas_root_id,char *input_style);
360
void add_color_palette(FILE *js_include_file,int canvas_root_id,char *input_style);
361
void add_js_load_image(FILE *js_include_file,int canvas_root_id);
361
void add_js_load_image(FILE *js_include_file,int canvas_root_id);
362
void add_js_images(FILE *js_include_file,int canvas_root_id,int use_offset,int snap);
362
void add_js_images(FILE *js_include_file,int canvas_root_id,int use_offset,int snap);
363
extern int NUMBER_OF_COLORNAMES;
363
extern int NUMBER_OF_COLORNAMES;
364
extern struct colors { char *hex; char *name; char *rgb; } colors[];
364
extern struct colors { char *hex; char *name; char *rgb; } colors[];