2018-12-20 17:33:31 +08:00
|
|
|
|
## event\_t
|
|
|
|
|
### 概述
|
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="event_t_methods">
|
|
|
|
|
|
|
|
|
|
| 函数名称 | 说明 |
|
|
|
|
|
| -------- | ------------ |
|
2019-12-14 13:25:56 +08:00
|
|
|
|
| <a href="#event_t_event_cast">event\_cast</a> | 转换为event对象。 |
|
2021-08-03 07:53:37 +08:00
|
|
|
|
| <a href="#event_t_event_clone">event\_clone</a> | clone事件对象。 |
|
2019-12-14 13:25:56 +08:00
|
|
|
|
| <a href="#event_t_event_create">event\_create</a> | 创建event对象。 |
|
|
|
|
|
| <a href="#event_t_event_destroy">event\_destroy</a> | 销毁事件对象。 |
|
2021-08-03 09:33:32 +08:00
|
|
|
|
| <a href="#event_t_event_from_name">event\_from\_name</a> | 将事件名转换成事件的值。 |
|
2021-05-11 15:53:22 +08:00
|
|
|
|
| <a href="#event_t_event_get_type">event\_get\_type</a> | 获取event类型。 |
|
2018-12-27 18:01:15 +08:00
|
|
|
|
| <a href="#event_t_event_init">event\_init</a> | 初始化事件。 |
|
2018-12-20 17:33:31 +08:00
|
|
|
|
### 属性
|
|
|
|
|
<p id="event_t_properties">
|
|
|
|
|
|
2019-01-17 15:56:15 +08:00
|
|
|
|
| 属性名称 | 类型 | 说明 |
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| -------- | ----- | ------------ |
|
2021-08-03 07:53:37 +08:00
|
|
|
|
| <a href="#event_t_native_window_handle">native\_window\_handle</a> | void* | 原生窗口句柄。 |
|
2020-09-23 17:37:32 +08:00
|
|
|
|
| <a href="#event_t_size">size</a> | int32\_t | 结构体的大小。 |
|
2018-12-21 12:11:40 +08:00
|
|
|
|
| <a href="#event_t_target">target</a> | void* | 事件发生的目标对象。 |
|
2020-05-24 19:28:22 +08:00
|
|
|
|
| <a href="#event_t_time">time</a> | uint64\_t | 事件发生的时间。 |
|
2018-12-21 18:29:29 +08:00
|
|
|
|
| <a href="#event_t_type">type</a> | int32\_t | 类型。 |
|
2018-12-20 17:33:31 +08:00
|
|
|
|
#### event\_cast 函数
|
2018-12-21 18:29:29 +08:00
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-12-14 13:25:56 +08:00
|
|
|
|
> <p id="event_t_event_cast">转换为event对象。
|
|
|
|
|
|
|
|
|
|
> 供脚本语言使用
|
2018-12-21 18:29:29 +08:00
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
event_t* event_cast (event_t* event);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
2019-01-14 11:38:31 +08:00
|
|
|
|
| 返回值 | event\_t* | event对象。 |
|
|
|
|
|
| event | event\_t* | event对象。 |
|
2021-08-03 07:53:37 +08:00
|
|
|
|
#### event\_clone 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
|
|
|
|
> <p id="event_t_event_clone">clone事件对象。
|
|
|
|
|
|
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
event_t* event_clone (event_t* event);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | event\_t* | 返回事件对象。 |
|
|
|
|
|
| event | event\_t* | event对象。 |
|
2019-01-14 11:38:31 +08:00
|
|
|
|
#### event\_create 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-12-14 13:25:56 +08:00
|
|
|
|
> <p id="event_t_event_create">创建event对象。
|
|
|
|
|
|
|
|
|
|
主要给脚本语言使用。
|
2019-01-14 11:38:31 +08:00
|
|
|
|
|
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
2019-12-09 11:51:36 +08:00
|
|
|
|
event_t* event_create (uint32_t type);
|
2019-01-14 11:38:31 +08:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | event\_t* | 返回事件对象。 |
|
|
|
|
|
| type | uint32\_t | 事件类型。 |
|
|
|
|
|
#### event\_destroy 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-12-14 13:25:56 +08:00
|
|
|
|
> <p id="event_t_event_destroy">销毁事件对象。
|
|
|
|
|
|
|
|
|
|
主要给脚本语言使用。
|
2019-01-14 11:38:31 +08:00
|
|
|
|
|
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ret_t event_destroy (event_t* event);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| event | event\_t* | event对象。 |
|
2021-08-03 09:33:32 +08:00
|
|
|
|
#### event\_from\_name 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
|
|
|
|
> <p id="event_t_event_from_name">将事件名转换成事件的值。
|
|
|
|
|
|
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
int32_t event_from_name (const char* name);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | int32\_t | 返回事件的值。 |
|
|
|
|
|
| name | const char* | 事件名。 |
|
2021-05-11 15:53:22 +08:00
|
|
|
|
#### event\_get\_type 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
|
|
|
|
> <p id="event_t_event_get_type">获取event类型。
|
|
|
|
|
|
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
2021-08-03 07:53:37 +08:00
|
|
|
|
uint32_t event_get_type (event_t* event);
|
2021-05-11 15:53:22 +08:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
2021-08-03 07:53:37 +08:00
|
|
|
|
| 返回值 | uint32\_t | 返回event类型。 |
|
2021-05-11 15:53:22 +08:00
|
|
|
|
| event | event\_t* | event对象。 |
|
2018-12-27 18:01:15 +08:00
|
|
|
|
#### event\_init 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="event_t_event_init">初始化事件。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-27 18:01:15 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
event_t event_init (uint32_t type, void* target);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | event\_t | 事件对象。 |
|
|
|
|
|
| type | uint32\_t | 事件类型。 |
|
|
|
|
|
| target | void* | 目标对象。 |
|
2021-08-03 07:53:37 +08:00
|
|
|
|
#### native\_window\_handle 属性
|
|
|
|
|
-----------------------
|
|
|
|
|
> <p id="event_t_native_window_handle">原生窗口句柄。
|
|
|
|
|
|
|
|
|
|
* 类型:void*
|
|
|
|
|
|
|
|
|
|
| 特性 | 是否支持 |
|
|
|
|
|
| -------- | ----- |
|
|
|
|
|
| 可直接读取 | 是 |
|
|
|
|
|
| 可直接修改 | 否 |
|
2020-09-23 17:37:32 +08:00
|
|
|
|
#### size 属性
|
|
|
|
|
-----------------------
|
|
|
|
|
> <p id="event_t_size">结构体的大小。
|
|
|
|
|
|
|
|
|
|
* 类型:int32\_t
|
|
|
|
|
|
|
|
|
|
| 特性 | 是否支持 |
|
|
|
|
|
| -------- | ----- |
|
|
|
|
|
| 可直接读取 | 是 |
|
|
|
|
|
| 可直接修改 | 否 |
|
|
|
|
|
| 可脚本化 | 是 |
|
2018-12-20 17:33:31 +08:00
|
|
|
|
#### target 属性
|
|
|
|
|
-----------------------
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="event_t_target">事件发生的目标对象。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
* 类型:void*
|
|
|
|
|
|
|
|
|
|
| 特性 | 是否支持 |
|
|
|
|
|
| -------- | ----- |
|
|
|
|
|
| 可直接读取 | 是 |
|
|
|
|
|
| 可直接修改 | 否 |
|
|
|
|
|
| 可脚本化 | 是 |
|
|
|
|
|
#### time 属性
|
|
|
|
|
-----------------------
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="event_t_time">事件发生的时间。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2020-05-24 19:28:22 +08:00
|
|
|
|
* 类型:uint64\_t
|
2018-12-20 17:33:31 +08:00
|
|
|
|
|
|
|
|
|
| 特性 | 是否支持 |
|
|
|
|
|
| -------- | ----- |
|
|
|
|
|
| 可直接读取 | 是 |
|
|
|
|
|
| 可直接修改 | 否 |
|
|
|
|
|
| 可脚本化 | 是 |
|
|
|
|
|
#### type 属性
|
|
|
|
|
-----------------------
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="event_t_type">类型。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
* 类型:int32\_t
|
|
|
|
|
|
|
|
|
|
| 特性 | 是否支持 |
|
|
|
|
|
| -------- | ----- |
|
|
|
|
|
| 可直接读取 | 是 |
|
|
|
|
|
| 可直接修改 | 否 |
|
|
|
|
|
| 可脚本化 | 是 |
|