Skip to content
Snippets Groups Projects
Commit c62ac0ca authored by Mnikolenko ProductEngine's avatar Mnikolenko ProductEngine
Browse files

MAINT-3569 FIXED Handle window hide/unhide and minimize/unminimize events on mac.

parent 271ca5e0
No related branches found
No related tags found
No related merge requests found
...@@ -124,6 +124,14 @@ attributedStringInfo getSegments(NSAttributedString *str) ...@@ -124,6 +124,14 @@ attributedStringInfo getSegments(NSAttributedString *str)
{ {
[[NSNotificationCenter defaultCenter] addObserver:self [[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(windowResized:) name:NSWindowDidResizeNotification selector:@selector(windowResized:) name:NSWindowDidResizeNotification
object:[self window]];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(windowWillMiniaturize:) name:NSWindowWillMiniaturizeNotification
object:[self window]];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(windowDidDeminiaturize:) name:NSWindowDidDeminiaturizeNotification
object:[self window]]; object:[self window]];
} }
...@@ -141,6 +149,16 @@ attributedStringInfo getSegments(NSAttributedString *str) ...@@ -141,6 +149,16 @@ attributedStringInfo getSegments(NSAttributedString *str)
} }
} }
- (void)windowWillMiniaturize:(NSNotification *)notification;
{
callWindowHide();
}
- (void)windowDidDeminiaturize:(NSNotification *)notification;
{
callWindowUnhide();
}
- (void)dealloc - (void)dealloc
{ {
[[NSNotificationCenter defaultCenter] removeObserver:self]; [[NSNotificationCenter defaultCenter] removeObserver:self];
......
...@@ -116,6 +116,8 @@ void callScrollMoved(float delta); ...@@ -116,6 +116,8 @@ void callScrollMoved(float delta);
void callMouseExit(); void callMouseExit();
void callWindowFocus(); void callWindowFocus();
void callWindowUnfocus(); void callWindowUnfocus();
void callWindowHide();
void callWindowUnhide();
void callDeltaUpdate(float *delta, unsigned int mask); void callDeltaUpdate(float *delta, unsigned int mask);
void callMiddleMouseDown(float *pos, unsigned int mask); void callMiddleMouseDown(float *pos, unsigned int mask);
void callMiddleMouseUp(float *pos, unsigned int mask); void callMiddleMouseUp(float *pos, unsigned int mask);
......
...@@ -349,6 +349,22 @@ void callWindowUnfocus() ...@@ -349,6 +349,22 @@ void callWindowUnfocus()
gWindowImplementation->getCallbacks()->handleFocusLost(gWindowImplementation); gWindowImplementation->getCallbacks()->handleFocusLost(gWindowImplementation);
} }
void callWindowHide()
{
if ( gWindowImplementation && gWindowImplementation->getCallbacks() )
{
gWindowImplementation->getCallbacks()->handleActivate(gWindowImplementation, false);
}
}
void callWindowUnhide()
{
if ( gWindowImplementation && gWindowImplementation->getCallbacks() )
{
gWindowImplementation->getCallbacks()->handleActivate(gWindowImplementation, true);
}
}
void callDeltaUpdate(float *delta, MASK mask) void callDeltaUpdate(float *delta, MASK mask)
{ {
gWindowImplementation->updateMouseDeltas(delta); gWindowImplementation->updateMouseDeltas(delta);
......
...@@ -84,6 +84,16 @@ ...@@ -84,6 +84,16 @@
callWindowUnfocus(); callWindowUnfocus();
} }
- (void) applicationDidHide:(NSNotification *)notification
{
callWindowHide();
}
- (void) applicationDidUnhide:(NSNotification *)notification
{
callWindowUnhide();
}
- (NSApplicationDelegateReply) applicationShouldTerminate:(NSApplication *)sender - (NSApplicationDelegateReply) applicationShouldTerminate:(NSApplication *)sender
{ {
if (!runMainLoop()) if (!runMainLoop())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment