annotate include/mbbutton.h @ 653:34710e86b4a2
Remove cairo-directfb.h but it will be needed at graphic layer initialization of SMP8654.
author |
Shih-Yuan Lee (FourDollars) <fourdollars@gmail.com> |
date |
Sat, 31 Jul 2010 16:36:53 +0800 |
parents |
2ca0773cd48d |
children |
586e50f82c1f |
rev |
line source |
294
|
1 #ifndef __MBBUTTON_H
|
|
2 #define __MBBUTTON_H
|
|
3 typedef struct _mb_button {
|
|
4 mb_obj_t obj;
|
|
5 redraw_man_t *rdman;
|
|
6 int state;
|
|
7 coord_t *root;
|
|
8 coord_t *active;
|
|
9 coord_t *normal;
|
|
10 coord_t *click;
|
|
11 void (*press)();
|
|
12 void *arg;
|
|
13 observer_t *obs_move,*obs_out,*obs_press;
|
|
14 mb_progm_t *progm;
|
|
15 } mb_button_t;
|
|
16 mb_button_t *mb_button_new(redraw_man_t *rdman,mb_sprite_t *sp, char *name);
|
|
17 void mb_button_add_onClick(mb_button_t *b, void (*h)(void *arg), void *arg);
|
|
18 #endif
|
|
19
|