## calibration\_win\_t
### 概述
![image](images/calibration_win_t_0.png)
电阻屏校准窗口。
calibration\_win\_t是[window\_base\_t](window_base_t.md)的子类控件,
window\_base\_t的函数均适用于calibration\_win\_t控件。
在xml中使用"calibration\_win"标签创建电阻屏校准窗口。如:
```xml
| 函数名称 | 说明 | | -------- | ------------ | | calibration\_win\_create | 创建calibration_win对象 | | calibration\_win\_set\_on\_click | 设置校准点击事件的处理函数。 | | calibration\_win\_set\_on\_done | 设置校准完成的处理函数。 | #### calibration\_win\_create 函数 ----------------------- * 函数功能: >
创建calibration_win对象 * 函数原型: ``` widget_t* calibration_win_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 | 高度 | #### calibration\_win\_set\_on\_click 函数 ----------------------- * 函数功能: >
设置校准点击事件的处理函数。 * 函数原型: ``` ret_t calibration_win_set_on_click (widget_t* widget, calibration_win_on_click_t on_click, void* ctx); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | widget | widget\_t* | widget对象。 | | on\_click | calibration\_win\_on\_click\_t | 回调函数。 | | ctx | void* | 回调函数的上下文。 | #### calibration\_win\_set\_on\_done 函数 ----------------------- * 函数功能: >
设置校准完成的处理函数。 * 函数原型: ``` ret_t calibration_win_set_on_done (widget_t* widget, calibration_win_on_done_t on_done, void* ctx); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | widget | widget\_t* | widget对象。 | | on\_done | calibration\_win\_on\_done\_t | 回调函数。 | | ctx | void* | 回调函数的上下文。 |