Mercurial > MadButterfly
view include/mbbutton.h @ 707:594827d0f3e5
Fix issue of relative path data.
A absolutely location, that is used to computed respective absolutely
location of relative location, must be updated after parsing every
segment of a path. But, it does not. It is fixed, now.
author | Thinker K.F. Li <thinker@branda.to> |
---|---|
date | Fri, 13 Aug 2010 17:26:25 +0800 |
parents | 2ca0773cd48d |
children | 586e50f82c1f |
line wrap: on
line source
#ifndef __MBBUTTON_H #define __MBBUTTON_H typedef struct _mb_button { mb_obj_t obj; redraw_man_t *rdman; int state; coord_t *root; coord_t *active; coord_t *normal; coord_t *click; void (*press)(); void *arg; observer_t *obs_move,*obs_out,*obs_press; mb_progm_t *progm; } mb_button_t; mb_button_t *mb_button_new(redraw_man_t *rdman,mb_sprite_t *sp, char *name); void mb_button_add_onClick(mb_button_t *b, void (*h)(void *arg), void *arg); #endif