Implement xterm mouse mode

This commit is contained in:
Bazyli Brzóska
2013-09-09 01:45:03 +02:00
committed by Keith Winstein
parent 6f0669b909
commit 5ef7f43479
4 changed files with 13 additions and 2 deletions
+2 -1
View File
@@ -190,6 +190,7 @@ namespace Terminal {
bool cursor_visible;
bool reverse_video;
bool bracketed_paste;
bool xterm_mouse;
bool application_mode_cursor_keys;
@@ -239,7 +240,7 @@ namespace Terminal {
return ( width == x.width ) && ( height == x.height ) && ( cursor_col == x.cursor_col )
&& ( cursor_row == x.cursor_row ) && ( cursor_visible == x.cursor_visible ) &&
( reverse_video == x.reverse_video ) && ( renditions == x.renditions ) &&
( bracketed_paste == x.bracketed_paste );
( bracketed_paste == x.bracketed_paste ) && ( xterm_mouse == x.xterm_mouse );
}
};