awtk/docs/manual/digit_clock_t.md

123 lines
2.9 KiB
Markdown
Raw Normal View History

2018-12-20 17:33:31 +08:00
## digit\_clock\_t
### 概述
![image](images/digit_clock_t_0.png)
2018-12-21 11:39:05 +08:00
数字时钟控件。
2018-12-20 17:33:31 +08:00
### 函数
<p id="digit_clock_t_methods">
| 函数名称 | 说明 |
| -------- | ------------ |
2018-12-21 12:11:40 +08:00
| <a href="#digit_clock_t_digit_clock_cast">digit\_clock\_cast</a> | 转换为digit_clock对象(供脚本语言使用)。 |
| <a href="#digit_clock_t_digit_clock_create">digit\_clock\_create</a> | 创建digit_clock对象 |
| <a href="#digit_clock_t_digit_clock_set_format">digit\_clock\_set\_format</a> | 设置显示格式。 |
2018-12-20 17:33:31 +08:00
### 属性
<p id="digit_clock_t_properties">
| 名属性称 | 类型 | 说明 |
| -------- | ----- | ------------ |
2018-12-21 12:11:40 +08:00
| <a href="#digit_clock_t_format">format</a> | char* | 显示格式。 |
2018-12-20 17:33:31 +08:00
#### digit\_clock\_cast 函数
2018-12-21 18:29:29 +08:00
-----------------------
* 函数功能:
> <p id="digit_clock_t_digit_clock_cast"> 转换为digit_clock对象(供脚本语言使用)。
2018-12-21 11:39:05 +08:00
* 函数原型:
```
widget_t* digit_clock_cast (widget_t* widget);
```
* 参数说明:
2018-12-20 17:33:31 +08:00
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | widget\_t* | digit\_clock对象。 |
| widget | widget\_t* | digit\_clock对象。 |
2018-12-21 18:29:29 +08:00
#### digit\_clock\_create 函数
-----------------------
2018-12-21 11:39:05 +08:00
* 函数功能:
2018-12-21 18:29:29 +08:00
> <p id="digit_clock_t_digit_clock_create"> 创建digit_clock对象
2018-12-20 17:33:31 +08:00
2018-12-21 11:39:05 +08:00
* 函数原型:
```
widget_t* digit_clock_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 | 高度 |
2018-12-21 18:29:29 +08:00
#### digit\_clock\_set\_format 函数
-----------------------
2018-12-21 11:39:05 +08:00
* 函数功能:
2018-12-21 18:29:29 +08:00
> <p id="digit_clock_t_digit_clock_set_format"> 设置显示格式。
2018-12-20 17:33:31 +08:00
2018-12-21 11:39:05 +08:00
* 函数原型:
```
ret_t digit_clock_set_format (widget_t* widget, const char* format);
```
* 参数说明:
2018-12-20 17:33:31 +08:00
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | ret\_t | 返回RET\_OK表示成功否则表示失败。 |
| widget | widget\_t* | 控件对象。 |
| format | const char* | 格式。 |
#### format 属性
-----------------------
2018-12-21 11:39:05 +08:00
> <p id="digit_clock_t_format"> 显示格式。
2018-12-20 17:33:31 +08:00
Y 代表年(完整显示)
M 代表月(1-12)
D 代表日(1-31)
h 代表时(0-23)
m 代表分(0-59)
s 代表秒(0-59)
YY 代表年(只显示末两位)
MM 代表月(01-12)
DD 代表日(01-31)
hh 代表时(00-23)
mm 代表分(00-59)
ss 代表秒(00-59)
如 日期时间为2018/11/12 9:10:20
"Y/D/M"显示为"2018/11/12"
"Y-D-M"显示为"2018-11-12"
"Y-D-M h:m:s"显示为"2018-11-12 9:10:20"
"Y-D-M hh:mm:ss"显示为"2018-11-12 09:10:20"
* 类型char*
| 特性 | 是否支持 |
| -------- | ----- |
| 可直接读取 | 是 |
| 可直接修改 | 否 |
| 可持久化 | 是 |
| 可脚本化 | 是 |
| 可在IDE中设置 | 是 |
| 可在XML中设置 | 是 |
2018-12-26 15:51:37 +08:00
| 支通过widget\_get\_prop读取 | 是 |
| 支通过widget\_set\_prop修改 | 是 |