awtk/docs/manual/tab_button_group_t.md

179 lines
4.8 KiB
Markdown
Raw Normal View History

2018-12-20 17:33:31 +08:00
## tab\_button\_group\_t
### 概述
![image](images/tab_button_group_t_0.png)
2019-01-07 12:06:05 +08:00
标签按钮分组控件。
一个简单的容器,主要用于对标签按钮进行布局和管理。
tab\_button\_group\_t是[widget\_t](widget_t.md)的子类控件,
widget\_t的函数均适用于tab\_button\_group\_t控件。
在xml中使用"tab\_button\_group"标签创建标签按钮分组控件。如:
```xml
<tab_button_group x="c" y="bottom:10" w="90%" h="30" compact="true" >
<tab_button text="General"/>
<tab_button text="Network" value="true" />
<tab_button text="Security"/>
</tab_button_group>
```
> 更多用法请参考:
[tab control](https://github.com/zlgopen/awtk/blob/master/demos/assets/raw/ui/)
可用通过style来设置控件的显示风格如颜色等等。如
```xml
<tab_button_group>
<style name="default">
<normal/>
</style>
</tab_button_group>
```
2019-01-15 14:34:05 +08:00
----------------------------------
2018-12-20 17:33:31 +08:00
### 函数
<p id="tab_button_group_t_methods">
| 函数名称 | 说明 |
| -------- | ------------ |
2018-12-21 12:11:40 +08:00
| <a href="#tab_button_group_t_tab_button_group_cast">tab\_button\_group\_cast</a> | 转换tab_button_group对象(供脚本语言使用)。 |
| <a href="#tab_button_group_t_tab_button_group_create">tab\_button\_group\_create</a> | 创建tab_button_group对象 |
2019-07-11 15:39:09 +08:00
| <a href="#tab_button_group_t_tab_button_group_set_compact">tab\_button\_group\_set\_compact</a> | 设置compact。 |
| <a href="#tab_button_group_t_tab_button_group_set_scrollable">tab\_button\_group\_set\_scrollable</a> | 设置scrollable。 |
2018-12-20 17:33:31 +08:00
### 属性
<p id="tab_button_group_t_properties">
2019-01-17 15:56:15 +08:00
| 属性名称 | 类型 | 说明 |
2018-12-20 17:33:31 +08:00
| -------- | ----- | ------------ |
2019-07-11 15:39:09 +08:00
| <a href="#tab_button_group_t_compact">compact</a> | bool\_t | 紧凑型排版子控件(缺省FALSE)。 |
| <a href="#tab_button_group_t_scrollable">scrollable</a> | bool\_t | 是否支持滚动(缺省FALSE)。 |
2018-12-20 17:33:31 +08:00
#### tab\_button\_group\_cast 函数
2018-12-21 18:29:29 +08:00
-----------------------
* 函数功能:
> <p id="tab_button_group_t_tab_button_group_cast"> 转换tab_button_group对象(供脚本语言使用)。
2018-12-21 11:39:05 +08:00
* 函数原型:
```
widget_t* tab_button_group_cast (widget_t* widget);
```
* 参数说明:
2018-12-20 17:33:31 +08:00
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | widget\_t* | tab\_button\_group对象。 |
| widget | widget\_t* | tab\_button\_group对象。 |
2018-12-21 18:29:29 +08:00
#### tab\_button\_group\_create 函数
-----------------------
2018-12-21 11:39:05 +08:00
* 函数功能:
2018-12-21 18:29:29 +08:00
> <p id="tab_button_group_t_tab_button_group_create"> 创建tab_button_group对象
2018-12-20 17:33:31 +08:00
2018-12-21 11:39:05 +08:00
* 函数原型:
```
widget_t* tab_button_group_create (widget_t* parent, xy_t x, xy_t y, wh_t w, wh_t h);
```
* 参数说明:
2018-12-20 17:33:31 +08:00
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | widget\_t* | 对象。 |
| parent | widget\_t* | 父控件 |
| x | xy\_t | x坐标 |
| y | xy\_t | y坐标 |
| w | wh\_t | 宽度 |
| h | wh\_t | 高度 |
2019-07-11 15:39:09 +08:00
#### tab\_button\_group\_set\_compact 函数
-----------------------
* 函数功能:
> <p id="tab_button_group_t_tab_button_group_set_compact"> 设置compact。
* 函数原型:
```
ret_t tab_button_group_set_compact (widget_t* widget, bool_t compact);
```
* 参数说明:
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | ret\_t | 返回RET\_OK表示成功否则表示失败。 |
| widget | widget\_t* | 控件对象。 |
| compact | bool\_t | 是否使用紧凑布局(缺省FALSE)。 |
#### tab\_button\_group\_set\_scrollable 函数
-----------------------
* 函数功能:
> <p id="tab_button_group_t_tab_button_group_set_scrollable"> 设置scrollable。
* 函数原型:
```
ret_t tab_button_group_set_scrollable (widget_t* widget, bool_t scrollable);
```
* 参数说明:
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | ret\_t | 返回RET\_OK表示成功否则表示失败。 |
| widget | widget\_t* | 控件对象。 |
| scrollable | bool\_t | 是否允许滚动(缺省FALSE)。 |
2018-12-20 17:33:31 +08:00
#### compact 属性
-----------------------
2019-07-11 15:39:09 +08:00
> <p id="tab_button_group_t_compact"> 紧凑型排版子控件(缺省FALSE)。
* 类型bool\_t
| 特性 | 是否支持 |
| -------- | ----- |
| 可直接读取 | 是 |
| 可直接修改 | 否 |
| 可持久化 | 是 |
| 可脚本化 | 是 |
| 可在IDE中设置 | 是 |
| 可在XML中设置 | 是 |
| 可通过widget\_get\_prop读取 | 是 |
| 可通过widget\_set\_prop修改 | 是 |
#### scrollable 属性
-----------------------
> <p id="tab_button_group_t_scrollable"> 是否支持滚动(缺省FALSE)。
> 紧凑型排版子控件时才支持滚动。
2018-12-20 17:33:31 +08:00
* 类型bool\_t
| 特性 | 是否支持 |
| -------- | ----- |
| 可直接读取 | 是 |
| 可直接修改 | 否 |
| 可持久化 | 是 |
| 可脚本化 | 是 |
| 可在IDE中设置 | 是 |
| 可在XML中设置 | 是 |
2019-01-02 16:13:02 +08:00
| 可通过widget\_get\_prop读取 | 是 |
| 可通过widget\_set\_prop修改 | 是 |