mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-10 08:20:59 -04:00
multi-seat: re-enable mouse button+motion reporting support
This commit is contained in:
parent
be2490022d
commit
58415428cf
3 changed files with 47 additions and 38 deletions
12
terminal.h
12
terminal.h
|
|
@ -509,9 +509,15 @@ void term_visual_focus_out(struct terminal *term);
|
|||
bool term_has_kbd_focus(struct terminal *term);
|
||||
void term_kbd_focus_in(struct terminal *term);
|
||||
void term_kbd_focus_out(struct terminal *term);
|
||||
void term_mouse_down(struct terminal *term, int button, int row, int col);
|
||||
void term_mouse_up(struct terminal *term, int button, int row, int col);
|
||||
void term_mouse_motion(struct terminal *term, int button, int row, int col);
|
||||
void term_mouse_down(
|
||||
struct terminal *term, int button, int row, int col,
|
||||
bool shift, bool alt, bool ctrl);
|
||||
void term_mouse_up(
|
||||
struct terminal *term, int button, int row, int col,
|
||||
bool shift, bool alt, bool ctrl);
|
||||
void term_mouse_motion(
|
||||
struct terminal *term, int button, int row, int col,
|
||||
bool shift, bool alt, bool ctrl);
|
||||
bool term_mouse_grabbed(const struct terminal *term);
|
||||
void term_xcursor_update(struct terminal *term);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue