logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

tickit_term_emit_key, tickit_term_emit_mouse - emit a fake key or mouse event

Description

tickit_term_emit_key()  invokes  the  event handler chain on the terminal instance, as if a key event had
       been received from the controlling terminal.tickit_term_emit_mouse() invokes the event handler  chain  on
       the terminal instance, as if a mouse event had been received from the controlling terminal.

       In  each  case,  the  event  handler chain runs with the usual semantics; each installed handler with the
       appropriate bit set in its event type mask will be invoked until one returns a true value. Any  remaining
       handlers after this will not get to see the event.

Name

       tickit_term_emit_key, tickit_term_emit_mouse - emit a fake key or mouse event

See Also

tickit_term_build(3), tickit_term_bind_event(3), tickit_term(7), tickit(7)

                                                                                         TICKIT_TERM_EMIT_KEY(3)

Synopsis

#include<tickit.h>voidtickit_term_emit_key(TickitTerm*tt,TickitKeyEventInfo*info);voidtickit_term_emit_mouse(TickitTerm*tt,TickitMouseEventInfo*info);

       Link with -ltickit.

See Also