Rebol Programming/insert-event-func

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:[edit | edit source]

INSERT-EVENT-FUNC funct 

DESCRIPTION:[edit | edit source]

Add a function to monitor global events. Return the func.

INSERT-EVENT-FUNC is a function value.

ARGUMENTS:[edit | edit source]

  • funct -- A function or a function body block (Type: block function)

SOURCE CODE[edit | edit source]

insert-event-func: func [
    {Add a function to monitor global events. Return the func.} 
    funct [block! function!] "A function or a function body block"
][
    if block? :funct [funct: func [face event] funct] 
    insert system/view/screen-face/feel/event-funcs :funct 
    :funct
]