awtk/docs/manual/system_bar_t.md

118 lines
3.2 KiB
Markdown
Raw Normal View History

2018-12-20 17:33:31 +08:00
## system\_bar\_t
### 概述
2018-12-21 11:39:05 +08:00
![image](images/system_bar_t_0.png)
2018-12-25 10:30:56 +08:00
system\_bar窗口。
system\_bar窗口是一种特殊的窗口独占LCD顶部区域用来显示当前窗口的标题和关闭按钮等内容。
> system\_bar窗口需要在打开第一个应用程序窗口之前打开。
2018-12-20 17:33:31 +08:00
system_bar对两个子控件会做特殊处理
2018-12-25 10:30:56 +08:00
2018-12-20 17:33:31 +08:00
* 1.名为"title"的label控件自动显示当前主窗口的name或text。
2018-12-25 10:30:56 +08:00
* 2.名为"close"的button控件点击之后向当前主窗口发送EVT\_REQUEST\_CLOSE\_WINDOW消息。
system\_bar\_t是[window\_base\_t](window_base_t.md)的子类控件,
window\_base\_t的函数均适用于system\_bar\_t控件。
在xml中使用"system\_bar"标签创建system\_bar窗口。如
```xml
<system_bar h="30">
<column x="0" y="0" w="-40" h="100%">
<label style="title" x="10" y="m" w="55%" h="100%" name="title"/>
<digit_clock style="time" x="r" y="m" w="40%" h="100%" format="hh:mm"/>
</column>
<button style="close" x="r:5" y="m" w="26" h="26" name="close" text="x"/>
</system_bar>
```
> 更多用法请参考:
[system_bar](https://github.com/zlgopen/awtk/blob/master/demos/assets/raw/ui/system_bar.xml)
在c代码中使用函数system\_bar\_create创建system\_bar窗口。如
```c
widget_t* win = system_bar_create(NULL, 0, 0, 320, 30);
```
> 创建之后,和使用普通窗口是一样的。
可用通过style来设置控件的显示风格如背景颜色等等。如
```xml
<system_bar>
<style name="default">
<normal bg_color="#a0a0a0"/>
</style>
</system_bar>
```
> 更多用法请参考:
[system_bar.xml](https://github.com/zlgopen/awtk/blob/master/demos/assets/raw/styles/system_bar.xml)
2018-12-20 17:33:31 +08:00
### 函数
<p id="system_bar_t_methods">
| 函数名称 | 说明 |
| -------- | ------------ |
2018-12-21 12:11:40 +08:00
| <a href="#system_bar_t_system_bar_cast">system\_bar\_cast</a> | 转换为system_bar对象(供脚本语言使用)。 |
| <a href="#system_bar_t_system_bar_create">system\_bar\_create</a> | 创建system_bar对象。 |
2018-12-20 17:33:31 +08:00
### 属性
<p id="system_bar_t_properties">
| 名属性称 | 类型 | 说明 |
| -------- | ----- | ------------ |
### 事件
<p id="system_bar_t_events">
| 事件名称 | 类型 | 说明 |
| -------- | ----- | ------- |
#### system\_bar\_cast 函数
2018-12-21 18:29:29 +08:00
-----------------------
* 函数功能:
> <p id="system_bar_t_system_bar_cast"> 转换为system_bar对象(供脚本语言使用)。
2018-12-21 11:39:05 +08:00
* 函数原型:
```
widget_t* system_bar_cast (widget_t* widget);
```
* 参数说明:
2018-12-20 17:33:31 +08:00
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | widget\_t* | system\_bar对象。 |
| widget | widget\_t* | system\_bar对象。 |
2018-12-21 18:29:29 +08:00
#### system\_bar\_create 函数
-----------------------
2018-12-21 11:39:05 +08:00
* 函数功能:
2018-12-21 18:29:29 +08:00
> <p id="system_bar_t_system_bar_create"> 创建system_bar对象。
2018-12-20 17:33:31 +08:00
2018-12-21 11:39:05 +08:00
* 函数原型:
```
widget_t* system_bar_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* | system\_bar对象。 |
| parent | widget\_t* | 父控件 |
| x | xy\_t | x坐标 |
| y | xy\_t | y坐标 |
| w | wh\_t | 宽度 |
| h | wh\_t | 高度 |