fix mutable_image name bug and doc bug

This commit is contained in:
xianjimli 2019-12-17 16:02:57 +08:00
parent 309586b576
commit fae725e985
5 changed files with 32 additions and 8 deletions

View File

@ -0,0 +1,3 @@
<window style="dark" anim_hint="htranslate" >
<mutable_image name="video" w="100%" h="100%"/>
</window>

View File

@ -359,7 +359,7 @@ ret_t edit_set_int (widget_t* widget, int32_t value);
* 函数原型:
```
ret_t edit_set_int_limit (widget_t* widget, int32_t min, int32_t max, int32_t step);
ret_t edit_set_int_limit (widget_t* widget, int32_t min, int32_t max, uint32_t step);
```
* 参数说明:
@ -370,7 +370,7 @@ ret_t edit_set_int_limit (widget_t* widget, int32_t min, int32_t max, int32_t st
| widget | widget\_t* | widget对象。 |
| min | int32\_t | 最小值。 |
| max | int32\_t | 最大值。 |
| step | int32\_t | 步长。 |
| step | uint32\_t | 步长。 |
#### edit\_set\_is\_valid\_char 函数
-----------------------

View File

@ -182,7 +182,7 @@ ret_t style_mutable_set_color (style_t* s, const char* state, const char* name,
* 函数原型:
```
ret_t style_mutable_set_int (style_t* s, const char* state, const char* name, int32_t val);
ret_t style_mutable_set_int (style_t* s, const char* state, const char* name, uint32_t val);
```
* 参数说明:
@ -193,7 +193,7 @@ ret_t style_mutable_set_int (style_t* s, const char* state, const char* name, in
| s | style\_t* | style对象。 |
| state | const char* | 控件状态。 |
| name | const char* | 属性名。 |
| val | int32\_t | 值。 |
| val | uint32\_t | 值。 |
#### style\_mutable\_set\_name 函数
-----------------------

View File

@ -114,7 +114,8 @@ widget_on(button, EVT_CLICK, on_click, NULL);
| <a href="#widget_t_widget_set_enable">widget\_set\_enable</a> | 设置控件的可用性。 |
| <a href="#widget_t_widget_set_feedback">widget\_set\_feedback</a> | 设置控件是否启用反馈。 |
| <a href="#widget_t_widget_set_floating">widget\_set\_floating</a> | 设置控件的floating标志。 |
| <a href="#widget_t_widget_set_focused">widget\_set\_focused</a> | 设置控件的是否聚焦。 |
| <a href="#widget_t_widget_set_focusable">widget\_set\_focusable</a> | 设置控件是否可获得焦点。 |
| <a href="#widget_t_widget_set_focused">widget\_set\_focused</a> | 设置控件是否获得焦点。 |
| <a href="#widget_t_widget_set_name">widget\_set\_name</a> | 设置控件的名称。 |
| <a href="#widget_t_widget_set_opacity">widget\_set\_opacity</a> | 设置控件的不透明度。 |
| <a href="#widget_t_widget_set_pointer_cursor">widget\_set\_pointer\_cursor</a> | 设置鼠标指针的图片名。 |
@ -1596,12 +1597,32 @@ ret_t widget_set_floating (widget_t* widget, bool_t floating);
| 返回值 | ret\_t | 返回RET\_OK表示成功否则表示失败。 |
| widget | widget\_t* | 控件对象。 |
| floating | bool\_t | 是否启用floating布局。 |
#### widget\_set\_focusable 函数
-----------------------
* 函数功能:
> <p id="widget_t_widget_set_focusable">设置控件是否可获得焦点。
* 函数原型:
```
ret_t widget_set_focusable (widget_t* widget, bool_t focusable);
```
* 参数说明:
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | ret\_t | 返回RET\_OK表示成功否则表示失败。 |
| widget | widget\_t* | 控件对象。 |
| focusable | bool\_t | 是否可获得焦点。 |
#### widget\_set\_focused 函数
-----------------------
* 函数功能:
> <p id="widget_t_widget_set_focused">设置控件的是否聚焦。
> <p id="widget_t_widget_set_focused">设置控件是否获得焦点
* 函数原型:
@ -1615,7 +1636,7 @@ ret_t widget_set_focused (widget_t* widget, bool_t focused);
| -------- | ----- | --------- |
| 返回值 | ret\_t | 返回RET\_OK表示成功否则表示失败。 |
| widget | widget\_t* | 控件对象。 |
| focused | bool\_t | 是否聚焦。 |
| focused | bool\_t | 是否获得焦点。 |
#### widget\_set\_name 函数
-----------------------

View File

@ -148,7 +148,7 @@ ret_t mutable_image_on_destroy(widget_t* widget);
ret_t mutable_image_on_paint_self(widget_t* widget, canvas_t* canvas);
#define WIDGET_TYPE_MUTABLE_IMAGE "mutable"
#define WIDGET_TYPE_MUTABLE_IMAGE "mutable_image"
#define MUTABLE_IMAGE(widget) ((mutable_image_t*)(mutable_image_cast(WIDGET(widget))))