awtk/docs/manual/paint_event_t.md

72 lines
1.7 KiB
Markdown
Raw Normal View History

2018-12-20 17:33:31 +08:00
## paint\_event\_t
### 概述
![image](images/paint_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="paint_event_t_methods">
| 函数名称 | 说明 |
| -------- | ------------ |
2023-06-29 10:56:20 +08:00
| <a href="#paint_event_t_paint_event_cast">paint\_event\_cast</a> | 把event对象转paint_event_t对象。 |
2019-04-09 09:57:16 +08:00
| <a href="#paint_event_t_paint_event_init">paint\_event\_init</a> | 初始化事件。 |
2018-12-20 17:33:31 +08:00
### 属性
<p id="paint_event_t_properties">
2019-01-17 15:56:15 +08:00
| 属性名称 | 类型 | 说明 |
2018-12-20 17:33:31 +08:00
| -------- | ----- | ------------ |
2018-12-21 18:29:29 +08:00
| <a href="#paint_event_t_c">c</a> | canvas\_t* | canvas。 |
2018-12-20 17:33:31 +08:00
#### paint\_event\_cast 函数
2018-12-21 18:29:29 +08:00
-----------------------
* 函数功能:
2023-06-29 10:56:20 +08:00
> <p id="paint_event_t_paint_event_cast">把event对象转paint_event_t对象。
2019-10-16 09:02:32 +08:00
2018-12-21 11:39:05 +08:00
* 函数原型:
```
paint_event_t* paint_event_cast (event_t* event);
```
* 参数说明:
2018-12-20 17:33:31 +08:00
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
2019-04-09 09:57:16 +08:00
| 返回值 | paint\_event\_t* | event 对象。 |
2018-12-20 17:33:31 +08:00
| event | event\_t* | event对象。 |
2019-04-09 09:57:16 +08:00
#### paint\_event\_init 函数
-----------------------
* 函数功能:
2019-11-15 11:33:43 +08:00
> <p id="paint_event_t_paint_event_init">初始化事件。
2019-10-16 09:02:32 +08:00
2019-04-09 09:57:16 +08:00
* 函数原型:
```
2023-06-29 10:44:29 +08:00
event_t* paint_event_init (paint_event_t* event, uint32_t type, void* target, canvas_t* c);
2019-04-09 09:57:16 +08:00
```
* 参数说明:
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | event\_t* | event对象。 |
| event | paint\_event\_t* | event对象。 |
| type | uint32\_t | 事件类型。 |
2023-06-29 10:44:29 +08:00
| target | void* | 事件目标。 |
2019-04-09 09:57:16 +08:00
| c | canvas\_t* | canvas对象。 |
2018-12-20 17:33:31 +08:00
#### c 属性
-----------------------
2019-11-15 11:33:43 +08:00
> <p id="paint_event_t_c">canvas。
2019-10-16 09:02:32 +08:00
2018-12-20 17:33:31 +08:00
* 类型canvas\_t*
| 特性 | 是否支持 |
| -------- | ----- |
| 可直接读取 | 是 |
| 可直接修改 | 否 |
| 可脚本化 | 是 |