diff options
| author | Erik Charlebois | 2013-04-20 10:32:31 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2013-04-20 10:32:31 +0300 |
| commit | 806bda47ddb469f6206ecc533458eadae6a5b575 (patch) | |
| tree | 8f5723c3984be59136b488290889ea5cab6573df /src/ChangeLog | |
| parent | 38ef2c8490eaa74e22504386beebc6d88d287094 (diff) | |
| parent | 1f635a07be94be671832e5e3db052139265f6445 (diff) | |
| download | emacs-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/ChangeLog | 19 |
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 @@ | |||
| 1 | 2013-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 | |||
| 1 | 2013-04-16 Juanma Barranquero <lekktu@gmail.com> | 20 | 2013-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. |