awtk/docs/manual/popup_t.md

239 lines
7.0 KiB
Markdown
Raw Normal View History

2019-10-17 14:23:01 +08:00
## popup\_t
### 概述
![image](images/popup_t_0.png)
2019-12-14 13:25:56 +08:00
弹出窗口。
弹出窗口是一种特殊的窗口大小和位置可以自由设置主要用来实现右键菜单和combo\_box的下列列表等功能。
popup\_t是[window\_base\_t](window_base_t.md)的子类控件window\_base\_t的函数均适用于popup\_t控件。
在xml中使用"popup"标签创建弹出窗口。如:
```xml
<popup close_when_click_outside="true" x="c" y="m" w="80%" h="80" >
<list_view x="0" y="0" w="100%" h="100%" item_height="30">
<scroll_view name="view" x="0" y="0" w="-12" h="100%">
<combo_box_item tr_text="english"/>
<combo_box_item tr_text="chinese" />
</scroll_view>
<scroll_bar_d name="bar" x="right" y="0" w="12" h="100%" value="0"/>
</list_view>
</popup>
```
>
2020-08-16 09:10:01 +08:00
更多用法请参考:[popup](https://github.com/zlgopen/awtk/blob/master/design/default/ui/)
2019-12-14 13:25:56 +08:00
在c代码中使用函数popup\_create创建弹出窗口。如
```c
widget_t* win = popup_create(NULL, 0, 0, w, h);
popup_set_close_when_click_outside(win, TRUE);
```
> 创建之后,和使用普通窗口是一样的。
> 完整示例请参考:[combo_box.c](https://github.com/zlgopen/awtk-c-demos/blob/master/demos/combo_box.c)
可用通过style来设置控件的显示风格如字体的大小和颜色等等。如
```xml
<popup>
<style name="default" border_color="#a0a0a0">
<normal bg_color="#f0f0f0"/>
</style>
</popup>
```
> 更多用法请参考:[theme
2020-08-16 09:10:01 +08:00
default](https://github.com/zlgopen/awtk/blob/master/design/default/styles/default.xml#L324)
2019-10-17 14:23:01 +08:00
----------------------------------
### 函数
<p id="popup_t_methods">
| 函数名称 | 说明 |
| -------- | ------------ |
| <a href="#popup_t_popup_cast">popup\_cast</a> | 转换为popup对象(供脚本语言使用)。 |
| <a href="#popup_t_popup_create">popup\_create</a> | 创建popup对象。 |
2022-12-05 12:10:53 +08:00
| <a href="#popup_t_popup_get_widget_vtable">popup\_get\_widget\_vtable</a> | 获取 popup 虚表。 |
2019-10-17 14:23:01 +08:00
| <a href="#popup_t_popup_set_close_when_click">popup\_set\_close\_when\_click</a> | 设置点击时是否关闭窗口。 |
| <a href="#popup_t_popup_set_close_when_click_outside">popup\_set\_close\_when\_click\_outside</a> | 设置点击窗口外部时是否关闭窗口。 |
2023-12-26 20:05:44 +08:00
| <a href="#popup_t_popup_set_close_when_timeout">popup\_set\_close\_when\_timeout</a> | 设置超时关闭时间(毫秒)。 |
2019-10-17 14:23:01 +08:00
### 属性
<p id="popup_t_properties">
| 属性名称 | 类型 | 说明 |
| -------- | ----- | ------------ |
| <a href="#popup_t_close_when_click">close\_when\_click</a> | bool\_t | 点击时是否关闭窗口。 |
| <a href="#popup_t_close_when_click_outside">close\_when\_click\_outside</a> | bool\_t | 点击到窗口外时是否关闭窗口。 |
2023-12-26 20:05:44 +08:00
| <a href="#popup_t_close_when_timeout">close\_when\_timeout</a> | uint32\_t | 超时后自动关闭窗口(毫秒)。 |
2019-10-17 14:23:01 +08:00
#### popup\_cast 函数
-----------------------
* 函数功能:
2019-11-15 11:33:43 +08:00
> <p id="popup_t_popup_cast">转换为popup对象(供脚本语言使用)。
2019-10-17 14:23:01 +08:00
* 函数原型:
```
widget_t* popup_cast (widget_t* widget);
```
* 参数说明:
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | widget\_t* | popup对象。 |
| widget | widget\_t* | popup对象。 |
#### popup\_create 函数
-----------------------
* 函数功能:
2019-11-15 11:33:43 +08:00
> <p id="popup_t_popup_create">创建popup对象。
2019-10-17 14:23:01 +08:00
* 函数原型:
```
widget_t* popup_create (widget_t* parent, xy_t x, xy_t y, wh_t w, wh_t h);
```
* 参数说明:
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | widget\_t* | popup对象。 |
| parent | widget\_t* | 父控件 |
| x | xy\_t | x坐标 |
| y | xy\_t | y坐标 |
| w | wh\_t | 宽度 |
| h | wh\_t | 高度 |
2022-12-05 12:10:53 +08:00
#### popup\_get\_widget\_vtable 函数
-----------------------
* 函数功能:
> <p id="popup_t_popup_get_widget_vtable">获取 popup 虚表。
* 函数原型:
```
const widget_vtable_t* popup_get_widget_vtable ();
```
* 参数说明:
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | const widget\_vtable\_t* | 成功返回 popup 虚表。 |
2019-10-17 14:23:01 +08:00
#### popup\_set\_close\_when\_click 函数
-----------------------
* 函数功能:
2019-11-15 11:33:43 +08:00
> <p id="popup_t_popup_set_close_when_click">设置点击时是否关闭窗口。
2019-10-17 14:23:01 +08:00
* 函数原型:
```
ret_t popup_set_close_when_click (widget_t* widget, bool_t close_when_click);
```
* 参数说明:
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | ret\_t | 返回RET\_OK表示成功否则表示失败。 |
| widget | widget\_t* | 控件对象。 |
| close\_when\_click | bool\_t | 点击时是否关闭窗口。 |
#### popup\_set\_close\_when\_click\_outside 函数
-----------------------
* 函数功能:
2019-11-15 11:33:43 +08:00
> <p id="popup_t_popup_set_close_when_click_outside">设置点击窗口外部时是否关闭窗口。
2019-10-17 14:23:01 +08:00
* 函数原型:
```
ret_t popup_set_close_when_click_outside (widget_t* widget, bool_t close_when_click_outside);
```
* 参数说明:
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | ret\_t | 返回RET\_OK表示成功否则表示失败。 |
| widget | widget\_t* | 控件对象。 |
| close\_when\_click\_outside | bool\_t | 点击窗口外部时是否关闭窗口。 |
2020-12-08 09:04:40 +08:00
#### popup\_set\_close\_when\_timeout 函数
-----------------------
* 函数功能:
2023-12-26 20:05:44 +08:00
> <p id="popup_t_popup_set_close_when_timeout">设置超时关闭时间(毫秒)。
2020-12-08 09:04:40 +08:00
* 函数原型:
```
ret_t popup_set_close_when_timeout (widget_t* widget, uint32_t close_when_timeout);
```
* 参数说明:
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | ret\_t | 返回RET\_OK表示成功否则表示失败。 |
| widget | widget\_t* | 控件对象。 |
2023-12-26 20:05:44 +08:00
| close\_when\_timeout | uint32\_t | 大于0时为定时器时间(毫秒),超时关闭窗口。 |
2019-10-17 14:23:01 +08:00
#### close\_when\_click 属性
-----------------------
2019-11-15 11:33:43 +08:00
> <p id="popup_t_close_when_click">点击时是否关闭窗口。
2019-10-17 14:23:01 +08:00
* 类型bool\_t
| 特性 | 是否支持 |
| -------- | ----- |
| 可直接读取 | 是 |
| 可直接修改 | 否 |
| 可持久化 | 是 |
| 可脚本化 | 是 |
| 可在IDE中设置 | 是 |
| 可在XML中设置 | 是 |
| 可通过widget\_get\_prop读取 | 是 |
| 可通过widget\_set\_prop修改 | 是 |
#### close\_when\_click\_outside 属性
-----------------------
2019-11-15 11:33:43 +08:00
> <p id="popup_t_close_when_click_outside">点击到窗口外时是否关闭窗口。
2019-10-17 14:23:01 +08:00
* 类型bool\_t
| 特性 | 是否支持 |
| -------- | ----- |
| 可直接读取 | 是 |
| 可直接修改 | 否 |
| 可持久化 | 是 |
| 可脚本化 | 是 |
| 可在IDE中设置 | 是 |
| 可在XML中设置 | 是 |
| 可通过widget\_get\_prop读取 | 是 |
| 可通过widget\_set\_prop修改 | 是 |
2020-12-08 09:04:40 +08:00
#### close\_when\_timeout 属性
-----------------------
2023-12-26 20:05:44 +08:00
> <p id="popup_t_close_when_timeout">超时后自动关闭窗口(毫秒)。
2020-12-08 09:04:40 +08:00
* 类型uint32\_t
| 特性 | 是否支持 |
| -------- | ----- |
| 可直接读取 | 是 |
| 可直接修改 | 否 |
| 可持久化 | 是 |
| 可脚本化 | 是 |
| 可在IDE中设置 | 是 |
| 可在XML中设置 | 是 |
| 可通过widget\_get\_prop读取 | 是 |
| 可通过widget\_set\_prop修改 | 是 |