awtk/docs/binding_custom_widget.md

70 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2020-11-05 11:36:21 +08:00
# 自定义控件支持脚本绑定
本文 [二维码控件](https://github.com/zlgopen/awtk-widget-qr.git) 为例,介绍一下如何让自定义控件支持脚本绑定。
> 本文前提:
* 安装 node.js
2021-07-11 17:18:42 +08:00
* 安装 python 3.x
2020-11-05 11:36:21 +08:00
* awtk 编译环境
* 在 bash 中运行
## 1. 获取自定义控件的源码
```
git clone https://github.com/zlgopen/awtk-widget-qr.git
```
## 2. 把自定义控件的源码拷贝到 AWTK 的 ext_widgets 目录下
```
cp -rf awtk-widget-qr/src/qr awtk/src/ext_widgets/qr
cp -rf awtk-widget-qr/src/qr_register.* awtk/src/ext_widgets/
```
## 3. 注册控件
修改 awtk/src/ext\_widgets/ext\_widgets.c
```c
#include "qr_register.h"
ret_t tk_ext_widgets_init(void) {
...
qr_register();
...
}
```
2021-07-11 17:18:42 +08:00
## 4. 编译 awtk
2020-11-05 11:36:21 +08:00
```
cd awtk
scons -j2
cd -
```
2022-07-05 17:10:18 +08:00
## 5. 更新绑定代码
2020-11-05 11:36:21 +08:00
```
2020-11-05 13:40:06 +08:00
git clone https://github.com/zlgopen/awtk-binding
2020-11-05 11:36:21 +08:00
cd awtk-binding
./gen.sh
cd -
```
2022-07-05 17:10:18 +08:00
## 6. 同步绑定代码到需要的语言
2020-11-05 11:36:21 +08:00
```
2020-11-05 13:40:06 +08:00
git clone https://github.com/zlgopen/awtk-jerryscript
2020-11-05 11:36:21 +08:00
cd awtk-jerryscript
./sync.sh
scons
```
2022-07-05 17:10:18 +08:00
## 7. 注意
2020-11-05 11:36:21 +08:00
* 开发应用程序时记得拷贝自定义控件的 style 到资源中。
2021-07-11 17:18:42 +08:00
* 如果代码下载太慢,可以从 fastgit 下载。