mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-30 02:58:26 +08:00
fix api comments
This commit is contained in:
parent
586981dc61
commit
49844ebf7a
@ -1991,7 +1991,7 @@ EXPORTS
|
||||
image_set_draw_type @1989
|
||||
image_cast @1990
|
||||
overlay_create @1991
|
||||
button_set_click_through @1992
|
||||
overlay_set_click_through @1992
|
||||
overlay_cast @1993
|
||||
popup_create @1994
|
||||
popup_cast @1995
|
||||
|
@ -98,7 +98,7 @@ typedef struct _overlay_t {
|
||||
widget_t* overlay_create(widget_t* parent, xy_t x, xy_t y, wh_t w, wh_t h);
|
||||
|
||||
/**
|
||||
* @method button_set_click_through
|
||||
* @method overlay_set_click_through
|
||||
* 设置是否启用点击穿透。
|
||||
* @annotation ["scriptable"]
|
||||
* @param {widget_t*} widget 控件对象。
|
||||
@ -106,7 +106,7 @@ widget_t* overlay_create(widget_t* parent, xy_t x, xy_t y, wh_t w, wh_t h);
|
||||
*
|
||||
* @return {ret_t} 返回RET_OK表示成功,否则表示失败。
|
||||
*/
|
||||
ret_t button_set_click_through(widget_t* widget, bool_t click_through);
|
||||
ret_t overlay_set_click_through(widget_t* widget, bool_t click_through);
|
||||
|
||||
/**
|
||||
* @method overlay_cast
|
||||
|
@ -60019,7 +60019,7 @@
|
||||
"scriptable": true
|
||||
},
|
||||
"desc": "设置是否启用点击穿透。",
|
||||
"name": "button_set_click_through",
|
||||
"name": "overlay_set_click_through",
|
||||
"return": {
|
||||
"type": "ret_t",
|
||||
"desc": "返回RET_OK表示成功,否则表示失败。"
|
||||
|
Loading…
Reference in New Issue
Block a user