## tab\_button\_group\_t
### 概述
![image](images/tab_button_group_t_0.png)
标签按钮分组控件。
一个简单的容器,主要用于对标签按钮进行布局和管理。
tab\_button\_group\_t是[widget\_t](widget_t.md)的子类控件,
widget\_t的函数均适用于tab\_button\_group\_t控件。
在xml中使用"tab\_button\_group"标签创建标签按钮分组控件。如:
```xml
| 函数名称 | 说明 | | -------- | ------------ | | tab\_button\_group\_cast | 转换tab_button_group对象(供脚本语言使用)。 | | tab\_button\_group\_create | 创建tab_button_group对象 | | tab\_button\_group\_get\_widget\_vtable | 获取 tab_button_group 虚表。 | | tab\_button\_group\_set\_compact | 设置compact。 | | tab\_button\_group\_set\_drag\_child | 设置拖拽 tab_button 控件位置。 | | tab\_button\_group\_set\_scrollable | 设置scrollable。 | ### 属性
| 属性名称 | 类型 | 说明 | | -------- | ----- | ------------ | | compact | bool\_t | 紧凑型排版子控件(缺省FALSE)。 | | drag\_child | bool\_t | 是否支持拖拽并且修改 tab_button 控件的位置(缺省FALSE)。 | | enable\_hscroll\_animator | bool\_t | 是否开启 tab_button 的左右滚动动画(缺省TRUE)。 | | scrollable | bool\_t | 是否支持滚动(缺省FALSE)。 | | scrollable\_mode | char* | 滚动模式 (缺省all) (all:鼠标滚轮+鼠标拖拽滚动,wheel:鼠标滚轮,dragged:鼠标拖拽滚动。 | #### tab\_button\_group\_cast 函数 ----------------------- * 函数功能: >
转换tab_button_group对象(供脚本语言使用)。 * 函数原型: ``` widget_t* tab_button_group_cast (widget_t* widget); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | widget\_t* | tab\_button\_group对象。 | | widget | widget\_t* | tab\_button\_group对象。 | #### tab\_button\_group\_create 函数 ----------------------- * 函数功能: >
创建tab_button_group对象 * 函数原型: ``` widget_t* tab_button_group_create (widget_t* parent, xy_t x, xy_t y, wh_t w, wh_t h); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | widget\_t* | 对象。 | | parent | widget\_t* | 父控件 | | x | xy\_t | x坐标 | | y | xy\_t | y坐标 | | w | wh\_t | 宽度 | | h | wh\_t | 高度 | #### tab\_button\_group\_get\_widget\_vtable 函数 ----------------------- * 函数功能: >
获取 tab_button_group 虚表。 * 函数原型: ``` const widget_vtable_t* tab_button_group_get_widget_vtable (); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | const widget\_vtable\_t* | 成功返回 tab\_button\_group 虚表。 | #### 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\_drag\_child 函数 ----------------------- * 函数功能: >
设置拖拽 tab_button 控件位置。 * 函数原型: ``` ret_t tab_button_group_set_drag_child (widget_t* widget, bool_t drag_child); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | widget | widget\_t* | 控件对象。 | | drag\_child | bool\_t | 是否拖拽(缺省FALSE)。 | #### 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)。 | #### compact 属性 ----------------------- >
紧凑型排版子控件(缺省FALSE)。 * 类型:bool\_t | 特性 | 是否支持 | | -------- | ----- | | 可直接读取 | 是 | | 可直接修改 | 否 | | 可持久化 | 是 | | 可脚本化 | 是 | | 可在IDE中设置 | 是 | | 可在XML中设置 | 是 | | 可通过widget\_get\_prop读取 | 是 | | 可通过widget\_set\_prop修改 | 是 | #### drag\_child 属性 ----------------------- >
是否支持拖拽并且修改 tab_button 控件的位置(缺省FALSE)。 > 紧凑型排版子控件时才支持滚动,开启该功能后,就不能拖拽滚动了,只能鼠标滚轮滚动了。 * 类型:bool\_t | 特性 | 是否支持 | | -------- | ----- | | 可直接读取 | 是 | | 可直接修改 | 否 | | 可持久化 | 是 | | 可脚本化 | 是 | | 可在IDE中设置 | 是 | | 可在XML中设置 | 是 | | 可通过widget\_get\_prop读取 | 是 | | 可通过widget\_set\_prop修改 | 是 | #### enable\_hscroll\_animator 属性 ----------------------- >
是否开启 tab_button 的左右滚动动画(缺省TRUE)。 * 类型:bool\_t | 特性 | 是否支持 | | -------- | ----- | | 可直接读取 | 是 | | 可直接修改 | 否 | | 可持久化 | 是 | | 可在IDE中设置 | 是 | | 可在XML中设置 | 是 | | 可通过widget\_get\_prop读取 | 是 | | 可通过widget\_set\_prop修改 | 是 | #### scrollable 属性 ----------------------- >
是否支持滚动(缺省FALSE)。 > 紧凑型排版子控件时才支持滚动。 * 类型:bool\_t | 特性 | 是否支持 | | -------- | ----- | | 可直接读取 | 是 | | 可直接修改 | 否 | | 可持久化 | 是 | | 可脚本化 | 是 | | 可在IDE中设置 | 是 | | 可在XML中设置 | 是 | | 可通过widget\_get\_prop读取 | 是 | | 可通过widget\_set\_prop修改 | 是 | #### scrollable\_mode 属性 ----------------------- >
滚动模式 (缺省all) (all:鼠标滚轮+鼠标拖拽滚动,wheel:鼠标滚轮,dragged:鼠标拖拽滚动。 * 类型:char* | 特性 | 是否支持 | | -------- | ----- | | 可直接读取 | 是 | | 可直接修改 | 否 | | 可持久化 | 是 | | 可脚本化 | 是 | | 可在IDE中设置 | 是 | | 可在XML中设置 | 是 | | 可通过widget\_get\_prop读取 | 是 | | 可通过widget\_set\_prop修改 | 是 |