view nodejs/shapes.m4 @ 1215:8e372ae69010

Fix the issue of showing active mark for a frame in a tween - Does not show active frame if user set an active frame in a tween and move the to other frame. - Frameline only redraw active mark of the current active frame is same as one of new hover and last hover frame. - It is fixed by detecting if the crruent active frame is in the same frame as one of new hover and last hover frame.
author Thinker K.F. Li <thinker@codemud.net>
date Wed, 05 Jan 2011 18:53:54 +0800
parents 2b492008ce26
children
line wrap: on
line source

define([PROJ_PREFIX], [xnjsmb_auto_])dnl
dnl
STRUCT([shape], [shape_t],
       [ACCESSOR([stroke_width],
		 [xnjsmb_shape_stroke_width_get],
		 [xnjsmb_shape_stroke_width_set])],
       [METHOD([show], [xnjsmb_shape_show], (SELF), 0, []),
        METHOD([hide], [xnjsmb_shape_hide], (SELF), 0, []),
	METHOD([remove], [xnjsmb_shape_remove], (SELF), 0, [])])

STRUCT([path], [shape_t], [], [],
       (([INHERIT], [shape]), ([STMOD], [xnjsmb_shape_mod])))

STRUCT([stext], [shape_t], [],
       [METHOD([set_text], [xnjsmb_sh_stext_set_text],
       			    (SELF, STR([txt])), 1, []),
        METHOD([set_style], [xnjsmb_sh_stext_set_style],
	       (SELF, ARRAY([blks]), ERR), 1, [])],
       (([INHERIT], [shape]), ([STMOD], [xnjsmb_shape_mod])))

STRUCT([image], [shape_t], [], [],
       (([INHERIT], [shape]), ([STMOD], [xnjsmb_shape_mod])))

STRUCT([rect], [shape_t], [],
       [METHOD([set], [xnjsmb_sh_rect_set],
	       (SELF, NUMBER(x), NUMBER(y), NUMBER(w), NUMBER(h),
	        NUMBER(rx), NUMBER(ry)), 6, [])],
       (([INHERIT], [shape]), ([STMOD], [xnjsmb_shape_mod])))