aboutsummaryrefslogtreecommitdiffstats
path: root/src/xterm.h
diff options
context:
space:
mode:
authorJan Djärv2003-10-05 13:42:04 +0000
committerJan Djärv2003-10-05 13:42:04 +0000
commit068ae0fd96c6bbd9aaa3b3d96232cf548749a36d (patch)
treef81a93a29681e6d45d53c696b9d7d41ad8f0b219 /src/xterm.h
parent96f09305d6345236220a4c705688c63210b5b890 (diff)
downloademacs-068ae0fd96c6bbd9aaa3b3d96232cf548749a36d.tar.gz
emacs-068ae0fd96c6bbd9aaa3b3d96232cf548749a36d.zip
* w32term.c (w32_read_socket): Remove call to x_check_fullscreen_move,
that function is removed. * xterm.c (x_set_offset): Use move_offset_left/top instead of x/y_pixels_outer_diff. (x_check_expected_move): Calculate move_offset_left/top. * xterm.h (struct x_output): New members: move_offset_top/left. * frame.c (x_set_frame_parameters): x_fullscreen_move removed, call x_set_offset directly. * frame.h (enum): FULLSCREEN_MOVE_WAIT removed.
Diffstat (limited to 'src/xterm.h')
-rw-r--r--src/xterm.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/xterm.h b/src/xterm.h
index 5f8a1af0444..fbd268abda2 100644
--- a/src/xterm.h
+++ b/src/xterm.h
@@ -625,10 +625,14 @@ struct x_output
625 int focus_state; 625 int focus_state;
626 626
627 /* The latest move we made to FRAME_OUTER_WINDOW. Saved so we can 627 /* The latest move we made to FRAME_OUTER_WINDOW. Saved so we can
628 compensate for type A WMs (see wm_type in dpyinfo above. */ 628 compensate for type A WMs (see wm_type in dpyinfo above). */
629 int expected_top; 629 int expected_top;
630 int expected_left; 630 int expected_left;
631 631
632 /* The offset we need to add to compensate for type A WMs. */
633 int move_offset_top;
634 int move_offset_left;
635
632 /* Nonzero if we have made a move and needs to check if the WM placed us 636 /* Nonzero if we have made a move and needs to check if the WM placed us
633 at the right position. */ 637 at the right position. */
634 int check_expected_move; 638 int check_expected_move;