update idl

This commit is contained in:
lixianjing 2019-11-12 21:56:23 -08:00
parent ec86f899a3
commit 1964ad3c56
2 changed files with 16 additions and 16 deletions

View File

@ -148,7 +148,7 @@ widget_t* draggable_cast(widget_t* widget);
* top
* @annotation ["scriptable"]
* @param {widget_t*} widget widget对象
* @param {uint32_t} top
* @param {int32_t} top
*
* @return {ret_t} RET_OK表示成功
*/
@ -159,7 +159,7 @@ ret_t draggable_set_top(widget_t* widget, int32_t top);
* bottom
* @annotation ["scriptable"]
* @param {widget_t*} widget widget对象
* @param {uint32_t} bottom
* @param {int32_t} bottom
*
* @return {ret_t} RET_OK表示成功
*/
@ -170,7 +170,7 @@ ret_t draggable_set_bottom(widget_t* widget, int32_t bottom);
* left
* @annotation ["scriptable"]
* @param {widget_t*} widget widget对象
* @param {uint32_t} left
* @param {int32_t} left
*
* @return {ret_t} RET_OK表示成功
*/
@ -181,7 +181,7 @@ ret_t draggable_set_left(widget_t* widget, int32_t left);
* right
* @annotation ["scriptable"]
* @param {widget_t*} widget widget对象
* @param {uint32_t} right
* @param {int32_t} right
*
* @return {ret_t} RET_OK表示成功
*/
@ -192,7 +192,7 @@ ret_t draggable_set_right(widget_t* widget, int32_t right);
* vertical_only
* @annotation ["scriptable"]
* @param {widget_t*} widget widget对象
* @param {uint32_t} vertical_only
* @param {bool_t} vertical_only
*
* @return {ret_t} RET_OK表示成功
*/
@ -203,7 +203,7 @@ ret_t draggable_set_vertical_only(widget_t* widget, bool_t vertical_only);
* horizontal_only
* @annotation ["scriptable"]
* @param {widget_t*} widget widget对象
* @param {uint32_t} horizontal_only
* @param {bool_t} horizontal_only
*
* @return {ret_t} RET_OK表示成功
*/
@ -214,7 +214,7 @@ ret_t draggable_set_horizontal_only(widget_t* widget, bool_t horizontal_only);
* drag_window
* @annotation ["scriptable"]
* @param {widget_t*} widget widget对象
* @param {uint32_t} drag_window
* @param {bool_t} drag_window drag_window
* titlebar上titlebar其实是希望拖动对话框
*
* @return {ret_t} RET_OK表示成功

View File

@ -29923,7 +29923,7 @@
"desc": "widget对象。"
},
{
"type": "uint32_t",
"type": "int32_t",
"name": "top",
"desc": "拖动范围的顶部限制。缺省为父控件的顶部。"
}
@ -29946,7 +29946,7 @@
"desc": "widget对象。"
},
{
"type": "uint32_t",
"type": "int32_t",
"name": "bottom",
"desc": "拖动范围的底部限制。缺省为父控件的底部。"
}
@ -29969,7 +29969,7 @@
"desc": "widget对象。"
},
{
"type": "uint32_t",
"type": "int32_t",
"name": "left",
"desc": "拖动范围的左边限制。缺省为父控件的左边。"
}
@ -29992,7 +29992,7 @@
"desc": "widget对象。"
},
{
"type": "uint32_t",
"type": "int32_t",
"name": "right",
"desc": "拖动范围的右边限制。缺省为父控件的右边边。"
}
@ -30015,7 +30015,7 @@
"desc": "widget对象。"
},
{
"type": "uint32_t",
"type": "bool_t",
"name": "vertical_only",
"desc": "只允许垂直拖动。"
}
@ -30038,7 +30038,7 @@
"desc": "widget对象。"
},
{
"type": "uint32_t",
"type": "bool_t",
"name": "horizontal_only",
"desc": "只允许水平拖动。"
}
@ -30061,9 +30061,9 @@
"desc": "widget对象。"
},
{
"type": "uint32_t",
"name": "",
"desc": "w"
"type": "bool_t",
"name": "drag_window",
"desc": "drag_window"
}
],
"annotation": {