diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2024-02-24 21:31:48 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2024-03-06 20:33:17 +0100 |
commit | 5c88ee9c45411ae22b16d66d92c48323546aa761 (patch) | |
tree | c2ea0182c4c759c387aa8ebdffc9c4cca299e759 /src/gui/gui-mouse.h | |
parent | a8a005321181df14f78f1213c3d8e20e9b59090d (diff) | |
download | weechat-5c88ee9c45411ae22b16d66d92c48323546aa761.zip |
core: add support of SGR mouse events, remove option weechat.look.mouse_timer_delay (closes #2082)
Diffstat (limited to 'src/gui/gui-mouse.h')
-rw-r--r-- | src/gui/gui-mouse.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gui/gui-mouse.h b/src/gui/gui-mouse.h index 440d95dbb..6ad0e5e18 100644 --- a/src/gui/gui-mouse.h +++ b/src/gui/gui-mouse.h @@ -26,7 +26,6 @@ extern int gui_mouse_enabled; extern int gui_mouse_debug; extern int gui_mouse_grab; extern int gui_mouse_event_pending; -extern struct t_hook *gui_mouse_event_timer; extern int gui_mouse_event_index; extern int gui_mouse_event_x[2]; extern int gui_mouse_event_y[2]; @@ -43,7 +42,7 @@ extern void gui_mouse_enable (); extern void gui_mouse_disable (); extern void gui_mouse_display_state (); extern void gui_mouse_grab_init (int area); -extern void gui_mouse_event_init (); -extern void gui_mouse_event_end (); +extern int gui_mouse_event_size (const char *key); +extern void gui_mouse_event_process (const char *key); #endif /* WEECHAT_GUI_MOUSE_H */ |