2018-12-20 17:33:31 +08:00
|
|
|
|
## prop\_change\_event\_t
|
|
|
|
|
### 概述
|
|
|
|
|
![image](images/prop_change_event_t_0.png)
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
对象属性变化事件。
|
2019-01-15 14:34:05 +08:00
|
|
|
|
----------------------------------
|
2018-12-20 17:33:31 +08:00
|
|
|
|
### 函数
|
|
|
|
|
<p id="prop_change_event_t_methods">
|
|
|
|
|
|
|
|
|
|
| 函数名称 | 说明 |
|
|
|
|
|
| -------- | ------------ |
|
2023-06-29 10:56:20 +08:00
|
|
|
|
| <a href="#prop_change_event_t_prop_change_event_cast">prop\_change\_event\_cast</a> | 把event对象转prop_change_event_t对象。 |
|
2019-11-26 17:08:01 +08:00
|
|
|
|
| <a href="#prop_change_event_t_prop_change_event_init">prop\_change\_event\_init</a> | 初始prop change event。 |
|
2018-12-20 17:33:31 +08:00
|
|
|
|
### 属性
|
|
|
|
|
<p id="prop_change_event_t_properties">
|
|
|
|
|
|
2019-01-17 15:56:15 +08:00
|
|
|
|
| 属性名称 | 类型 | 说明 |
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| -------- | ----- | ------------ |
|
2019-05-07 14:37:26 +08:00
|
|
|
|
| <a href="#prop_change_event_t_name">name</a> | const char* | 属性的名称。 |
|
|
|
|
|
| <a href="#prop_change_event_t_value">value</a> | const value\_t* | 属性的值。 |
|
2018-12-20 17:33:31 +08:00
|
|
|
|
#### prop\_change\_event\_cast 函数
|
2018-12-21 18:29:29 +08:00
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2023-06-29 10:56:20 +08:00
|
|
|
|
> <p id="prop_change_event_t_prop_change_event_cast">把event对象转prop_change_event_t对象。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
prop_change_event_t* prop_change_event_cast (event_t* event);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
2019-11-26 17:08:01 +08:00
|
|
|
|
| 返回值 | prop\_change\_event\_t* | 返回event对象。 |
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| event | event\_t* | event对象。 |
|
2019-11-26 17:08:01 +08:00
|
|
|
|
#### prop\_change\_event\_init 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
|
|
|
|
> <p id="prop_change_event_t_prop_change_event_init">初始prop change event。
|
|
|
|
|
|
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
2020-06-24 12:06:19 +08:00
|
|
|
|
event_t* prop_change_event_init (prop_change_event_t* event, uint32_t type, const char* name, const value_t* value);
|
2019-11-26 17:08:01 +08:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | event\_t* | 返回event对象。 |
|
|
|
|
|
| event | prop\_change\_event\_t* | event对象。 |
|
2020-06-24 12:06:19 +08:00
|
|
|
|
| type | uint32\_t | 事件类型。 |
|
|
|
|
|
| name | const char* | 属性名。 |
|
|
|
|
|
| value | const value\_t* | 属性的值。 |
|
2018-12-20 17:33:31 +08:00
|
|
|
|
#### name 属性
|
|
|
|
|
-----------------------
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="prop_change_event_t_name">属性的名称。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2019-05-07 14:37:26 +08:00
|
|
|
|
* 类型:const char*
|
2018-12-20 17:33:31 +08:00
|
|
|
|
|
|
|
|
|
| 特性 | 是否支持 |
|
|
|
|
|
| -------- | ----- |
|
|
|
|
|
| 可直接读取 | 是 |
|
|
|
|
|
| 可直接修改 | 否 |
|
|
|
|
|
| 可脚本化 | 是 |
|
|
|
|
|
#### value 属性
|
|
|
|
|
-----------------------
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="prop_change_event_t_value">属性的值。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2019-05-07 14:37:26 +08:00
|
|
|
|
* 类型:const value\_t*
|
2018-12-20 17:33:31 +08:00
|
|
|
|
|
|
|
|
|
| 特性 | 是否支持 |
|
|
|
|
|
| -------- | ----- |
|
|
|
|
|
| 可直接读取 | 是 |
|
|
|
|
|
| 可直接修改 | 否 |
|
|
|
|
|
| 可脚本化 | 是 |
|