awtk/docs/api_doc.md

142 lines
3.7 KiB
Markdown
Raw Normal View History

2018-08-13 06:47:38 +08:00
## 注释格式
AWTK中的API注释除了作为API的文档之外还充当以下重要的作用
* 提取JSON格式的IDL用于生成各种语言的绑定代码。
2018-08-13 07:04:25 +08:00
* 用于设计器(designer)获取各个控件的元信息。
2018-08-13 06:47:38 +08:00
我采用了类似于[jsduck](https://github.com/senchalabs/jsduck)的API注释格式但是jsduck并不支持C语言的数据类型所以没有办法完全兼容jsduck的格式。
### 一、类的注释
示例:
```
/**
* @class progress_bar_t
* @parent widget_t
* @annotation ["scriptable"]
* 进度条控件。
*/
```
里面说明了类的名称、基类的名称和该类型是否可以脚本化。对于类annotation的取值有
* scriptable 该类可以被脚本化。
* fake 该类是fake的并不真实存在。
2019-03-05 17:44:57 +08:00
* widget 表示该类是widget的子类。
* window 表示该类是窗口的子类。
* design 表示可以在UI设计器中使用。
2018-08-13 06:47:38 +08:00
### 二、类成员变量注释
示例:
```
/**
* @property {uint8_t} value
* @annotation ["set_prop","get_prop","readable","persitent","design","scriptable"]
* 进度条的值[0-100]。
*/
```
2018-08-13 07:04:25 +08:00
里面说明了成员变量的类型、名称和是否只读等信息。对于propertyannotation的取值有
* set\_prop 是否可以通过widget\_set\_prop来设置该属性。
* get\_prop 是否可以通过widget\_get\_prop来获取该属性。
* readable 该属性是否可以直接读取。
* writable 该属性是否可以直接修改。
* persitent 该属性是否需要持久化。
* design 该属性可以在设计器中设置。
* scriptable 该属性是否支持脚本化。
2018-08-13 06:47:38 +08:00
### 三、函数的注释
示例:
```
2018-08-13 07:04:25 +08:00
/**
* @method progress_bar_create
* @annotation ["constructor", "scriptable"]
* 创建progress_bar对象
* @param {widget_t*} parent 父控件
* @param {xy_t} x x坐标
* @param {xy_t} y y坐标
* @param {wh_t} w 宽度
* @param {wh_t} h 高度
*
* @return {widget_t*} 对象。
*/
widget_t* progress_bar_create(widget_t* parent, xy_t x, xy_t y, wh_t w, wh_t h);
/**
* @method progress_bar_cast
* 转换为progress_bar对象(供脚本语言使用)。
* @annotation ["cast", "scriptable"]
* @param {widget_t*} widget progress_bar对象。
*
* @return {widget_t*} progress_bar对象。
*/
widget_t* progress_bar_cast(widget_t* widget);
2018-08-13 06:47:38 +08:00
/**
* @method progress_bar_set_value
* 设置进度条的进度。
2018-08-13 07:04:25 +08:00
* @annotation ["scriptable"]
2018-08-13 06:47:38 +08:00
* @param {widget_t*} widget 控件对象。
* @param {uint8_t} value 进度
*
* @return {ret_t} 返回RET_OK表示成功否则表示失败。
*/
2018-08-13 07:04:25 +08:00
ret_t progress_bar_set_value(widget_t* widget, uint8_t value);
2018-08-13 06:47:38 +08:00
```
2018-08-13 07:04:25 +08:00
里面说明了函数的名称、参数和返回值。对于propertyannotation的取值有
* global 是否是全局函数。除了指明为全局函数,函数是当前类的成员函数。
* cast 类型转换函数。
* constructor 构造函数
* deconstructor 析构函数
* scriptable 是否可以脚本化。对于特殊函数(通常有回调函数作为参数)不方便直接产生代码可以指定为scriptable:custom使用定制的绑定代码。
2018-08-13 06:47:38 +08:00
### 四、枚举的注释
示例:
```
/**
* @enum align_v_t
2018-08-13 07:04:25 +08:00
* @annotation ["scriptable"]
2018-08-13 06:47:38 +08:00
* 垂直对齐的常量定义。
*/
typedef enum _align_v_t {
/**
* @const ALIGN_V_NONE
* 无效对齐方式。
*/
ALIGN_V_NONE= 0,
/**
* @const ALIGN_V_MIDDLE
* 居中对齐。
*/
ALIGN_V_MIDDLE,
/**
* @const ALIGN_V_TOP
* 顶部对齐。
*/
ALIGN_V_TOP,
/**
* @const ALIGN_V_BOTTOM
* 底部对齐。
*/
ALIGN_V_BOTTOM
}align_v_t;
```
2018-08-13 07:04:25 +08:00
里面定义了枚举的名称和各个枚举值。对于枚举annotation的取值有
* scriptable 该类可以被脚本化。
2018-08-13 06:47:38 +08:00