diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2012-09-03 09:32:38 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2012-09-04 22:36:47 +0100 |
commit | 41a448193f2cce87c9e7125f7a71e19acb928604 (patch) | |
tree | 9448f8a1988f10e76d6870acc9a8c61a45285306 /tmux.h | |
parent | 03045551849f139076e95fcdc71dc28dc8459db2 (diff) | |
download | rtmux-41a448193f2cce87c9e7125f7a71e19acb928604.tar.gz rtmux-41a448193f2cce87c9e7125f7a71e19acb928604.tar.bz2 rtmux-41a448193f2cce87c9e7125f7a71e19acb928604.zip |
Send notifications to control clients. Also don't redraw client when
suspended.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -2211,6 +2211,17 @@ void clear_signals(int); /* control.c */ void control_callback(struct client *, int, void*); +void printflike2 control_write(struct client *, const char *, ...); + +/* control-notify.c */ +void control_notify_window_layout_changed(struct window *); +void control_notify_window_unlinked(struct session *, struct window *); +void control_notify_window_linked(struct session *, struct window *); +void control_notify_window_renamed(struct window *); +void control_notify_attached_session_changed(struct client *); +void control_notify_session_renamed(struct session *); +void control_notify_session_created(struct session *); +void control_notify_session_close(struct session *); /* session.c */ extern struct sessions sessions; |