aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorErik Charlebois2013-04-20 10:32:31 +0300
committerEli Zaretskii2013-04-20 10:32:31 +0300
commit806bda47ddb469f6206ecc533458eadae6a5b575 (patch)
tree8f5723c3984be59136b488290889ea5cab6573df /src/ChangeLog
parent38ef2c8490eaa74e22504386beebc6d88d287094 (diff)
parent1f635a07be94be671832e5e3db052139265f6445 (diff)
downloademacs-806bda47ddb469f6206ecc533458eadae6a5b575.tar.gz
emacs-806bda47ddb469f6206ecc533458eadae6a5b575.zip
Better full-screen frame support on MS-Windows.
src/w32fns.c (w32_fullscreen_rect): New function to compute the window rectangle for the given fullscreen mode. (w32_wnd_proc): When in a fullscreen mode, WM_WINDOWPOSCHANGING no longer tunes the window size. This keeps the window's edges flush with the screen and allows the taskbar to hide itself in fullboth. src/w32term.c (w32fullscreen_hook): 'fullboth' now shows without window decorations and uses the entire screen. src/w32term.h (w32_fullscreen_rect) Add prototype. (struct w32_output): Replace normal_width, normal_height, normal_top, and normal_left members with a single normal_placement struct. (FRAME_NORMAL_WIDTH, FRAME_NORMAL_HEIGHT, FRAME_NORMAL_TOP): Remove macros. (FRAME_NORMAL_PLACEMENT): New macro. Fixes: debbugs:14180
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 04a6c353619..5164dc8ff8d 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,22 @@
12013-04-20 Erik Charlebois <erikcharlebois@gmail.com>
2
3 * w32fns.c (w32_fullscreen_rect): New function to compute the
4 window rectangle for the given fullscreen mode.
5 (w32_wnd_proc): When in a fullscreen mode, WM_WINDOWPOSCHANGING no
6 longer tunes the window size. This keeps the window's edges flush
7 with the screen and allows the taskbar to hide itself in fullboth.
8
9 * w32term.c (w32fullscreen_hook): 'fullboth' now shows without
10 window decorations and uses the entire screen.
11
12 * w32term.h (w32_fullscreen_rect) Add prototype.
13 (struct w32_output): Replace normal_width, normal_height,
14 normal_top, and normal_left members with a single normal_placement
15 struct.
16 (FRAME_NORMAL_WIDTH, FRAME_NORMAL_HEIGHT, FRAME_NORMAL_TOP):
17 Remove macros.
18 (FRAME_NORMAL_PLACEMENT): New macro.
19
12013-04-16 Juanma Barranquero <lekktu@gmail.com> 202013-04-16 Juanma Barranquero <lekktu@gmail.com>
2 21
3 * minibuf.c (Ftest_completion): Silence compiler warning. 22 * minibuf.c (Ftest_completion): Silence compiler warning.