diff options
author | Alan Third <alan@idiocy.org> | 2021-06-05 12:39:46 +0100 |
---|---|---|
committer | Alan Third <alan@idiocy.org> | 2021-07-31 11:13:05 +0100 |
commit | 1535c81f77153dd61426246be2e8afd33fa6909a (patch) | |
tree | bab94aad738e323d9b269a3616140051e4402cdf /src/nsfns.m | |
parent | a4d2c88cdee90a3e4863a62c4ff69896d0c1a347 (diff) | |
download | emacs-1535c81f77153dd61426246be2e8afd33fa6909a.tar.gz emacs-1535c81f77153dd61426246be2e8afd33fa6909a.tar.bz2 emacs-1535c81f77153dd61426246be2e8afd33fa6909a.zip |
Tidy up NS port OS window handling
* src/nsterm.h (EmacsWindow): Move above EmacsView definition and add
new method definitions.
(EmacsView): Remove redundant bwidth variable, and change NSWindow to
EmacsWindow.
(EmacsFSWindow): Delete definition.
* src/nsterm.m (ns_set_undecorated): Rewrite to work in GNUstep using
the new OS window creating methods.
([EmacsView initFrameFromEmacs:]): Move all NSWindow related code to
new init method in EmacsWindow, and use said method.
([EmacsView toggleFullScreen:]): Use EmacsWindow instead of NSWindow.
([EmacsWindow initWithEmacsFrame:]):
([EmacsWindow initWithEmacsFrame:fullscreen:screen:]):
([EmacsWindow borderWidth]): New methods.
(EmacsFSWindow): Remove implementation.
Diffstat (limited to 'src/nsfns.m')
-rw-r--r-- | src/nsfns.m | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nsfns.m b/src/nsfns.m index 454a6fdab62..c40367703db 100644 --- a/src/nsfns.m +++ b/src/nsfns.m @@ -947,11 +947,7 @@ frame_parm_handler ns_frame_parm_handlers[] = 0, /* x_set_sticky */ 0, /* x_set_tool_bar_position */ 0, /* x_set_inhibit_double_buffering */ -#ifdef NS_IMPL_COCOA ns_set_undecorated, -#else - 0, /* ns_set_undecorated */ -#endif ns_set_parent_frame, 0, /* x_set_skip_taskbar */ ns_set_no_focus_on_map, |