Skip to content

Commit 2fdbfcf

Browse files
committed
improve api doc(#956)
1 parent 2731a9d commit 2fdbfcf

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/base/dialog.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,9 @@ ret_t dialog_set_title(widget_t* widget, const char* title);
285285
* dialog_modal返回后,dialog对象将在下一个idle函数中回收。
286286
* 也就是在dialog_modal调用完成后仍然可以访问dialog中控件,直到本次事件结束。
287287
* 调用该函数会使线程进入阻塞状态,需要调用dialog_quit来解除阻塞。
288+
* > 建议尽量少用模态对话框,特别不要多级嵌套模态对话框,部分平台(如WEB)不支持模态对话框。
289+
* > AWTK本身是不能操作对话框后面的窗口的,相当于是模态的,只是事件是异步的,传统模态对话框都是可以用非模态对话框实现的。
290+
*
288291
* @annotation ["scriptable"]
289292
* @param {widget_t*} widget dialog对象。
290293
*

0 commit comments

Comments
 (0)