aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2002-01-13 12:31:20 +0000
committerEli Zaretskii2002-01-13 12:31:20 +0000
commit8a8e19a31c60474344f575484d359fbd903bfadf (patch)
tree85044b6357dfe871832f8f4ddc6218f9e5d5a222
parent01a7f6831ab170c6cab172d6d7d0cac4454f7efb (diff)
downloademacs-8a8e19a31c60474344f575484d359fbd903bfadf.tar.gz
emacs-8a8e19a31c60474344f575484d359fbd903bfadf.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog2
-rw-r--r--src/ChangeLog29
2 files changed, 30 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a155e2353f2..5f545865af7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,4 +1,4 @@
12002-01-13 Eli Zaretskii <eliz@gnu.org> 12002-01-13 Jan Djarv <Jan.Djarv@mbox200.swipnet.se>
2 2
3 * startup.el (command-line-x-option-alist): New options "-fs", 3 * startup.el (command-line-x-option-alist): New options "-fs",
4 "-fw", "-fh", "--fullscreen", "--fullwidth", and "--fullheight". 4 "-fw", "-fh", "--fullscreen", "--fullwidth", and "--fullheight".
diff --git a/src/ChangeLog b/src/ChangeLog
index 43111d961a3..33f13ef4e49 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,32 @@
12002-01-13 Jan Djarv <Jan.Djarv@mbox200.swipnet.se>
2
3 * xterm.h (struct x_output): New members want_fullscreen,
4 x_pixels_diff, y_pixels_diff, x_pixels_outer_diff, and
5 y_pixels_outer_diff.
6 New enum for FULLSCREEN_* constants.
7 (FRAME_OUTER_WINDOW): Handle the case where output_data.x->widget
8 is NULL.
9 (x_fullscreen_adjust): Add prototype.
10
11 * emacs.c (USAGE2): Add the new full-screen arguments.
12 (standard_args): Ditto.
13
14 * xfns.c (Qfullscreen, Qfullwidth, Qfullheight, Qfullboth): New
15 variables.
16 (syms_of_xfns): Intern and staticpro them.
17 (x_frame_parms) <"fullscreen">: New parameter.
18 (x_fullscreen_move, x_set_fullscreen): New functions.
19 (x_set_frame_parameters): Support for Qfullscreen.
20 (x_real_positions): More accurate computation of the frame position.
21 (x_figure_window_size): Support full-screen frames.
22 (Fx_create_frame): Default the fullscreen parameter.
23
24 * xterm.c (x_check_fullscreen, x_fullscreen_adjust): New functions.
25 (XTread_socket) <Expose>: Call x_check_fullscreen.
26 <ConfigureNotify>: Don't resize to fullscreen. Call
27 x_check_fullscreen_move, and set the want_fullscreen member of
28 output_data.x.
29
12002-01-13 Jason Rumney <jasonr@gnu.org> 302002-01-13 Jason Rumney <jasonr@gnu.org>
2 31
3 * w32term.h (WM_XBUTTONDOWN, WM_XBUTTONUP): New window messages 32 * w32term.h (WM_XBUTTONDOWN, WM_XBUTTONUP): New window messages