Rebol 程式設計/告知
外觀
INFORM panel /offset where /title ttl /timeout time
顯示一個專門用於警報、對話方塊和請求器的焦點面板。
INFORM 是一個函式值。
- panel -- (型別: 物件)
- /offset
- where -- 面板偏移量 (型別: 座標)
- /title
- ttl -- 對話方塊視窗標題 (型別: 字串)
- /timeout
- time -- (型別: 任何)
inform: func [
{Display an exclusive focus panel for alerts, dialogs, and requestors.}
panel [object!]
/offset where [pair!] "Offset of panel"
/title ttl [string!] "Dialog window title"
/timeout time
][
panel/text: copy any [ttl "Dialog"]
panel/offset: either offset [where] [system/view/screen-face/size - panel/size / 2]
panel/feel: system/view/window-feel
show-popup panel
either time [if none? wait time [hide-popup/timeout]] [do-events]
]