ZLG 开源 GUI 引擎 awtk 针对 C++ 的绑定。
git clone https://github.com/zlgopen/awtk.git
cd awtk; scons; cd -
git clone https://github.com/zlgopen/awtk-cpp.git
cd awtk-cpp
scons
python ./scripts/update_res.py all
或者通过 designer 生成资源
scons
scons LINUX_FB=true
完整编译选项请参考编译选项
./bin/demo_basic
./sync.sh
在非 bash 终端(如 Windows 平台的 cmd.exe),需要根据 sync.sh 的内容手工执行相应的命令。
TWidget win = TWindow::CreateDefault();
TWidget ok = TButton::Create(win, 0, 0, 0, 0);
ok.SetText("quit");
ok.SetSelfLayoutParams("center", "middle", "50%", "30");
ok.On(EVT_CLICK, ClickToQuit, NULL);
本文以 Linux/MacOS 为例,Windows 可能会微妙差异,请酌情处理。
请参考:hello目录。
感谢staunchheart(QQ:36380047)兄提供C++框架(包括代码生成)的思路和各种建议。