[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
scratch/ns/refactor 27df712 4/8: Change NS port resize detection
From: |
Alan Third |
Subject: |
scratch/ns/refactor 27df712 4/8: Change NS port resize detection |
Date: |
Sat, 12 Jun 2021 16:48:52 -0400 (EDT) |
branch: scratch/ns/refactor
commit 27df712e77fe41e806d462b5e147622ac220583a
Author: Alan Third <alan@idiocy.org>
Commit: Alan Third <alan@idiocy.org>
Change NS port resize detection
* src/nsterm.m ([EmacsView windowDidResize:]): Remove function, it's
not performing a useful function any more.
([EmacsView viewDidResize]):
([EmacsView resizeWithOldSuperviewSize:]): Replace viewDidResize with
resizeWithOldSuperviewSize.
([EmacsView initFrameFromEmacs:]): Remove the view resize notification
as we don't need it any more.
---
src/nsterm.m | 82 +++++++++++-------------------------------------------------
1 file changed, 15 insertions(+), 67 deletions(-)
diff --git a/src/nsterm.m b/src/nsterm.m
index 8d9762f..ae97112 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -7125,43 +7125,6 @@ not_in_argv (NSString *arg)
}
-- (void)windowDidResize: (NSNotification *)notification
-{
- NSTRACE ("[EmacsView windowDidResize:]");
- if (!FRAME_LIVE_P (emacsframe))
- {
- NSTRACE_MSG ("Ignored (frame dead)");
- return;
- }
- if (emacsframe->output_data.ns->in_animation)
- {
- NSTRACE_MSG ("Ignored (in animation)");
- return;
- }
-
- if (! [self fsIsNative])
- {
- NSWindow *theWindow = [notification object];
- /* We can get notification on the non-FS window when in
- fullscreen mode. */
- if ([self window] != theWindow) return;
- }
-
- NSTRACE_RECT ("frame", [[notification object] frame]);
-
-#ifdef NS_IMPL_GNUSTEP
- NSWindow *theWindow = [notification object];
-
- /* In GNUstep, at least currently, it's possible to get a didResize
- without getting a willResize, therefore we need to act as if we got
- the willResize now. */
- NSSize sz = [theWindow frame].size;
- sz = [self windowWillResize: theWindow toSize: sz];
-#endif /* NS_IMPL_GNUSTEP */
-
- ns_send_appdefined (-1);
-}
-
#ifdef NS_IMPL_COCOA
- (void)viewDidEndLiveResize
{
@@ -7179,38 +7142,30 @@ not_in_argv (NSString *arg)
#endif /* NS_IMPL_COCOA */
-- (void)viewDidResize:(NSNotification *)notification
+- (void)resizeWithOldSuperviewSize: (NSSize)oldSize
{
- NSRect frame = [self frame];
- int neww, newh, oldw, oldh;
+ NSRect frame;
+ int width, height;
- if (! FRAME_LIVE_P (emacsframe))
- return;
+ NSTRACE ("[EmacsView resizeWithOldSuperviewSize:]");
- NSTRACE ("[EmacsView viewDidResize]");
+ [super resizeWithOldSuperviewSize:oldSize];
- neww = (int)NSWidth (frame);
- newh = (int)NSHeight (frame);
- oldw = FRAME_PIXEL_WIDTH (emacsframe);
- oldh = FRAME_PIXEL_HEIGHT (emacsframe);
+ if (! FRAME_LIVE_P (emacsframe))
+ return;
- /* Don't want to do anything when the view size hasn't changed. */
- if (emacsframe->new_size_p
- ? (newh == emacsframe->new_height
- && neww == emacsframe->new_width)
- : (oldh == newh && oldw == neww))
- {
- NSTRACE_MSG ("No change");
- return;
- }
+ frame = [self frame];
+ width = (int)NSWidth (frame);
+ height = (int)NSHeight (frame);
- NSTRACE_SIZE ("New size", NSMakeSize (neww, newh));
- NSTRACE_SIZE ("Original size", NSMakeSize (oldw, oldh));
+ NSTRACE_SIZE ("New size", NSMakeSize (width, height));
+ NSTRACE_SIZE ("Original size", size);
- change_frame_size (emacsframe, neww, newh, false, YES, false);
+ change_frame_size (emacsframe, width, height, false, YES, false);
SET_FRAME_GARBAGED (emacsframe);
cancel_mouse_face (emacsframe);
+ ns_send_appdefined (-1);
}
@@ -7374,7 +7329,7 @@ not_in_argv (NSString *arg)
/* These settings mean AppKit will retain the contents of the frame
on resize. Unfortunately it also means the frame will not be
automatically marked for display, but we can do that ourselves in
- viewDidResize. */
+ resizeWithOldSuperviewSize. */
[self setWantsLayer:YES];
[self setLayerContentsRedrawPolicy:
NSViewLayerContentsRedrawOnSetNeedsDisplay];
@@ -7398,13 +7353,6 @@ not_in_argv (NSString *arg)
[NSApp registerServicesMenuSendTypes: ns_send_types
returnTypes: [NSArray array]];
- /* Set up view resize notifications. */
- [self setPostsFrameChangedNotifications:YES];
- [[NSNotificationCenter defaultCenter]
- addObserver:self
- selector:@selector (viewDidResize:)
- name:NSViewFrameDidChangeNotification object:nil];
-
ns_window_num++;
return self;
}
- branch scratch/ns/refactor created (now 06aa958), Alan Third, 2021/06/12
- scratch/ns/refactor f77cdc1 1/8: Simplify macOS drawing code, Alan Third, 2021/06/12
- scratch/ns/refactor 17c9369 2/8: Fix GNUstep build warnings, Alan Third, 2021/06/12
- scratch/ns/refactor 7d71f37 3/8: Tidy up NS port OS window handling, Alan Third, 2021/06/12
- scratch/ns/refactor 27df712 4/8: Change NS port resize detection,
Alan Third <=
- scratch/ns/refactor f766a85 5/8: Fix GNUstep menu update crashes, Alan Third, 2021/06/12
- scratch/ns/refactor 6cbbfa0 6/8: Fix macOS live resize drawing, Alan Third, 2021/06/12
- scratch/ns/refactor 13dd79a 7/8: Move NS port toolbar handling to the window, Alan Third, 2021/06/12
- scratch/ns/refactor 06aa958 8/8: Move parent frame setting code into EmacsWindow, Alan Third, 2021/06/12