Mercurial > MadButterfly
annotate nodejs/mbfly_njs.m4 @ 736:cdd578c1f866
Add Canvas class for the dynamic content generation. The testcanvas.js is used to demostrate the capability of it.
author | wycc |
---|---|
date | Sat, 21 Aug 2010 19:12:43 +0800 |
parents | 8b7964869f7a |
children | 163f0d9e6382 |
rev | line source |
---|---|
673
f5d2ff34c6f6
Definition of binding for mblfy_njs.cc
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
1 dnl |
f5d2ff34c6f6
Definition of binding for mblfy_njs.cc
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
2 define([PROJ_PREFIX], [xnjsmb_auto_])dnl |
f5d2ff34c6f6
Definition of binding for mblfy_njs.cc
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
3 dnl |
f5d2ff34c6f6
Definition of binding for mblfy_njs.cc
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
4 STRUCT([mb_rt], [njs_runtime_t], [], |
f5d2ff34c6f6
Definition of binding for mblfy_njs.cc
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
5 [METHOD([coord_new], [xnjsmb_coord_new], |
f5d2ff34c6f6
Definition of binding for mblfy_njs.cc
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
6 (OBJ([parent], [coord], [coord_t]), ERR), 1, |
683
7685c57e29d0
Migrate JS shapes binding to gen_v8_binding.m4
Thinker K.F. Li <thinker@branda.to>
parents:
676
diff
changeset
|
7 [OBJ([coord], [coord_t])], |
7685c57e29d0
Migrate JS shapes binding to gen_v8_binding.m4
Thinker K.F. Li <thinker@branda.to>
parents:
676
diff
changeset
|
8 (([MOD], [xnjsmb_mb_rt_objs_mod]))), |
673
f5d2ff34c6f6
Definition of binding for mblfy_njs.cc
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
9 METHOD([redraw_changed], [xnjsmb_redraw_changed], (), 0, []), |
683
7685c57e29d0
Migrate JS shapes binding to gen_v8_binding.m4
Thinker K.F. Li <thinker@branda.to>
parents:
676
diff
changeset
|
10 METHOD([redraw_all], [xnjsmb_redraw_all], (), 0, []), |
693
8b7964869f7a
Update window with XImage through XSHM
Thinker K.F. Li <thinker@branda.to>
parents:
690
diff
changeset
|
11 METHOD([flush], [X_njs_MB_flush], (), 0, []), |
683
7685c57e29d0
Migrate JS shapes binding to gen_v8_binding.m4
Thinker K.F. Li <thinker@branda.to>
parents:
676
diff
changeset
|
12 METHOD([path_new], [xnjsmb_path_new], (STR(txt)), 1, |
7685c57e29d0
Migrate JS shapes binding to gen_v8_binding.m4
Thinker K.F. Li <thinker@branda.to>
parents:
676
diff
changeset
|
13 [OBJ([path], [shape_t])], (([MOD], [xnjsmb_mb_rt_objs_mod]))), |
7685c57e29d0
Migrate JS shapes binding to gen_v8_binding.m4
Thinker K.F. Li <thinker@branda.to>
parents:
676
diff
changeset
|
14 METHOD([stext_new], [xnjsmb_stext_new], |
7685c57e29d0
Migrate JS shapes binding to gen_v8_binding.m4
Thinker K.F. Li <thinker@branda.to>
parents:
676
diff
changeset
|
15 (STR(txt), NUMBER(x), NUMBER(y)), 3, |
7685c57e29d0
Migrate JS shapes binding to gen_v8_binding.m4
Thinker K.F. Li <thinker@branda.to>
parents:
676
diff
changeset
|
16 [OBJ([stext], [shape_t])], |
7685c57e29d0
Migrate JS shapes binding to gen_v8_binding.m4
Thinker K.F. Li <thinker@branda.to>
parents:
676
diff
changeset
|
17 (([MOD], [xnjsmb_mb_rt_objs_mod]))), |
7685c57e29d0
Migrate JS shapes binding to gen_v8_binding.m4
Thinker K.F. Li <thinker@branda.to>
parents:
676
diff
changeset
|
18 METHOD([image_new], [xnjsmb_image_new], |
7685c57e29d0
Migrate JS shapes binding to gen_v8_binding.m4
Thinker K.F. Li <thinker@branda.to>
parents:
676
diff
changeset
|
19 (NUMBER(x), NUMBER(y), NUMBER(w), NUMBER(h)), 4, |
7685c57e29d0
Migrate JS shapes binding to gen_v8_binding.m4
Thinker K.F. Li <thinker@branda.to>
parents:
676
diff
changeset
|
20 [OBJ([image], [shape_t])], |
687
da12923a789a
Migrate paints.cc to use gen_v8_binding.m4
Thinker K.F. Li <thinker@branda.to>
parents:
683
diff
changeset
|
21 (([MOD], [xnjsmb_mb_rt_objs_mod]))), |
690
86c6ebf1de25
Add JS binding for sh_rect_t
Thinker K.F. Li <thinker@branda.to>
parents:
687
diff
changeset
|
22 METHOD([rect_new], [xnjsmb_rect_new], |
86c6ebf1de25
Add JS binding for sh_rect_t
Thinker K.F. Li <thinker@branda.to>
parents:
687
diff
changeset
|
23 (NUMBER(x), NUMBER(y), NUMBER(w), NUMBER(h), |
86c6ebf1de25
Add JS binding for sh_rect_t
Thinker K.F. Li <thinker@branda.to>
parents:
687
diff
changeset
|
24 NUMBER(rx), NUMBER(ry), ERR), 6, |
86c6ebf1de25
Add JS binding for sh_rect_t
Thinker K.F. Li <thinker@branda.to>
parents:
687
diff
changeset
|
25 [OBJ([rect], [shape_t])], |
86c6ebf1de25
Add JS binding for sh_rect_t
Thinker K.F. Li <thinker@branda.to>
parents:
687
diff
changeset
|
26 (([MOD], [xnjsmb_mb_rt_objs_mod]))), |
687
da12923a789a
Migrate paints.cc to use gen_v8_binding.m4
Thinker K.F. Li <thinker@branda.to>
parents:
683
diff
changeset
|
27 METHOD([paint_color_new], [xnjsmb_paint_color_new], |
da12923a789a
Migrate paints.cc to use gen_v8_binding.m4
Thinker K.F. Li <thinker@branda.to>
parents:
683
diff
changeset
|
28 (NUMBER(r), NUMBER(g), NUMBER(b), NUMBER(a), ERR), 4, |
da12923a789a
Migrate paints.cc to use gen_v8_binding.m4
Thinker K.F. Li <thinker@branda.to>
parents:
683
diff
changeset
|
29 [OBJ([paint_color], [paint_t])], |
da12923a789a
Migrate paints.cc to use gen_v8_binding.m4
Thinker K.F. Li <thinker@branda.to>
parents:
683
diff
changeset
|
30 (([MOD], [xnjsmb_mb_rt_objs_mod]))), |
da12923a789a
Migrate paints.cc to use gen_v8_binding.m4
Thinker K.F. Li <thinker@branda.to>
parents:
683
diff
changeset
|
31 METHOD([paint_image_new], [xnjsmb_paint_image_new], |
da12923a789a
Migrate paints.cc to use gen_v8_binding.m4
Thinker K.F. Li <thinker@branda.to>
parents:
683
diff
changeset
|
32 (OBJ([img], [img_data], [mb_img_data_t]), ERR), 1, |
da12923a789a
Migrate paints.cc to use gen_v8_binding.m4
Thinker K.F. Li <thinker@branda.to>
parents:
683
diff
changeset
|
33 [OBJ([paint_image], [paint_t])], |
683
7685c57e29d0
Migrate JS shapes binding to gen_v8_binding.m4
Thinker K.F. Li <thinker@branda.to>
parents:
676
diff
changeset
|
34 (([MOD], [xnjsmb_mb_rt_objs_mod])))], |
673
f5d2ff34c6f6
Definition of binding for mblfy_njs.cc
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
35 ((CTOR, ([_X_njs_MB_new], (SELF, STR(display_name), INT(width), INT(height)), 3)))dnl |
f5d2ff34c6f6
Definition of binding for mblfy_njs.cc
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
36 ) |