diff --git a/src/Cocoa/Cocoa_Window.mm b/src/Cocoa/Cocoa_Window.mm index 24f6545cb5..73aa70110d 100644 --- a/src/Cocoa/Cocoa_Window.mm +++ b/src/Cocoa/Cocoa_Window.mm @@ -34,6 +34,14 @@ IMPLEMENT_STANDARD_RTTIEXT(Cocoa_Window,Aspect_Window) #if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE // #else + +#if !defined(MAC_OS_X_VERSION_10_12) || (MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_12) + // replacements for macOS versions before 10.12 + #define NSWindowStyleMaskResizable NSResizableWindowMask + #define NSWindowStyleMaskClosable NSClosableWindowMask + #define NSWindowStyleMaskTitled NSTitledWindowMask +#endif + static Standard_Integer getScreenBottom() { Cocoa_LocalPool aLocalPool; @@ -95,7 +103,7 @@ Cocoa_Window::Cocoa_Window (const Standard_CString theTitle, myYBottom = myYTop + thePxHeight; Cocoa_LocalPool aLocalPool; - NSUInteger aWinStyle = NSTitledWindowMask | NSClosableWindowMask | NSResizableWindowMask; + NSUInteger aWinStyle = NSWindowStyleMaskTitled | NSWindowStyleMaskClosable | NSWindowStyleMaskResizable; NSRect aRectNs = NSMakeRect (float(myXLeft), float(myYTop), float(thePxWidth), float(thePxHeight)); myHWindow = [[NSWindow alloc] initWithContentRect: aRectNs styleMask: aWinStyle diff --git a/src/Draw/Draw_Window_1.mm b/src/Draw/Draw_Window_1.mm index e59b69890a..d17b2cb16e 100644 --- a/src/Draw/Draw_Window_1.mm +++ b/src/Draw/Draw_Window_1.mm @@ -18,6 +18,25 @@ #include #include +#if !defined(MAC_OS_X_VERSION_10_12) || (MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_12) + // replacements for macOS versions before 10.12 + #define NSEventTypeLeftMouseDown NSLeftMouseDown + #define NSEventTypeRightMouseDown NSRightMouseDown + #define NSEventTypeLeftMouseDragged NSLeftMouseDragged + #define NSEventTypeMouseMoved NSMouseMoved + + #define NSEventMaskLeftMouseDragged NSLeftMouseDraggedMask + #define NSEventMaskMouseMoved NSMouseMovedMask + #define NSEventMaskLeftMouseDown NSLeftMouseDownMask + #define NSEventMaskRightMouseDown NSRightMouseDownMask + + #define NSWindowStyleMaskResizable NSResizableWindowMask + #define NSWindowStyleMaskClosable NSClosableWindowMask + #define NSWindowStyleMaskTitled NSTitledWindowMask + + #define NSCompositingOperationSourceOver NSCompositeSourceOver +#endif + @interface Draw_CocoaView : NSView { NSImage* myImage; @@ -53,7 +72,7 @@ [myImage drawInRect: aBounds fromRect: NSZeroRect - operation: NSCompositeSourceOver + operation: NSCompositingOperationSourceOver fraction: 1 respectFlipped: YES hints: nil]; @@ -199,7 +218,7 @@ void Draw_Window::Init (const Standard_Integer& theXLeft, const Standard_Integer if (myWindow == NULL) { NSRect aRectNs = NSMakeRect (theXLeft, anYTop, theWidth, theHeight); - NSUInteger aWinStyle = NSTitledWindowMask | NSClosableWindowMask | NSResizableWindowMask; + NSUInteger aWinStyle = NSWindowStyleMaskTitled | NSWindowStyleMaskClosable | NSWindowStyleMaskResizable; myWindow = [[NSWindow alloc] initWithContentRect: aRectNs styleMask: aWinStyle @@ -580,11 +599,11 @@ void GetNextEvent (Standard_Boolean theWait, { Cocoa_LocalPool aLocalPool; - unsigned int anEventMatchMask = NSLeftMouseDownMask | NSRightMouseDownMask; + unsigned int anEventMatchMask = NSEventMaskLeftMouseDown | NSEventMaskRightMouseDown; if (!theWait) { - anEventMatchMask = anEventMatchMask | NSMouseMovedMask | NSLeftMouseDraggedMask; + anEventMatchMask = anEventMatchMask | NSEventMaskMouseMoved | NSEventMaskLeftMouseDragged; Draw_IsInZoomingMode = Standard_True; } @@ -604,15 +623,15 @@ void GetNextEvent (Standard_Boolean theWait, NSEventType anEventType = [anEvent type]; - if (anEventType == NSLeftMouseDown) + if (anEventType == NSEventTypeLeftMouseDown) { theButton = 1; } - else if (anEventType == NSRightMouseDown) + else if (anEventType == NSEventTypeRightMouseDown) { theButton = 3; } - else if ((anEventType == NSMouseMoved || anEventType == NSLeftMouseDragged) && !theWait) + else if ((anEventType == NSEventTypeMouseMoved || anEventType == NSEventTypeLeftMouseDragged) && !theWait) { theButton = 0; } diff --git a/src/OpenGl/OpenGl_Window_1.mm b/src/OpenGl/OpenGl_Window_1.mm index bbd37293fd..1b29a2d421 100644 --- a/src/OpenGl/OpenGl_Window_1.mm +++ b/src/OpenGl/OpenGl_Window_1.mm @@ -162,7 +162,11 @@ OpenGl_Window::OpenGl_Window (const Handle(OpenGl_GraphicDriver)& theDriver, { continue; } + + // deprecated since macOS 10.12 without replacement + Standard_DISABLE_DEPRECATION_WARNINGS anAttribs[aLastAttrib++] = NSOpenGLPFAStereo; + Standard_ENABLE_DEPRECATION_WARNINGS } anAttribs[aLastAttrib] = 0; diff --git a/src/ViewerTest/ViewerTest_ViewerCommands_1.mm b/src/ViewerTest/ViewerTest_ViewerCommands_1.mm index e29bd354e8..b727b1f6cb 100644 --- a/src/ViewerTest/ViewerTest_ViewerCommands_1.mm +++ b/src/ViewerTest/ViewerTest_ViewerCommands_1.mm @@ -23,6 +23,12 @@ #include #include +#if !defined(MAC_OS_X_VERSION_10_12) || (MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_12) + // replacements for macOS versions before 10.12 + #define NSEventModifierFlagControl NSControlKeyMask + #define NSEventModifierFlagShift NSShiftKeyMask +#endif + //! Custom Cocoa view to handle events @interface ViewerTest_CocoaEventManagerView : NSView @end @@ -227,7 +233,7 @@ static void getMouseCoords (NSView* theView, - (void )mouseDown: (NSEvent* )theEvent { getMouseCoords (self, theEvent, X_ButtonPress, Y_ButtonPress); - VT_ProcessButton1Press (0, NULL, Standard_False, [theEvent modifierFlags] & NSShiftKeyMask); + VT_ProcessButton1Press (0, NULL, Standard_False, [theEvent modifierFlags] & NSEventModifierFlagShift); } // ======================================================================= @@ -237,7 +243,7 @@ static void getMouseCoords (NSView* theView, - (void )mouseUp: (NSEvent* )theEvent { getMouseCoords (self, theEvent, X_Motion, Y_Motion); - VT_ProcessButton1Release([theEvent modifierFlags] & NSShiftKeyMask); + VT_ProcessButton1Release([theEvent modifierFlags] & NSEventModifierFlagShift); } @@ -248,7 +254,7 @@ static void getMouseCoords (NSView* theView, - (void )mouseDragged: (NSEvent* )theEvent { IsDragged = Standard_True; - if ([theEvent modifierFlags] & NSControlKeyMask) + if ([theEvent modifierFlags] & NSEventModifierFlagControl) { getMouseCoords (self, theEvent, X_Motion, Y_Motion); VT_ProcessControlButton2Motion(); @@ -281,7 +287,7 @@ static void getMouseCoords (NSView* theView, // ======================================================================= - (void )rightMouseDragged: (NSEvent* )theEvent { - if ([theEvent modifierFlags] & NSControlKeyMask) + if ([theEvent modifierFlags] & NSEventModifierFlagControl) { getMouseCoords (self, theEvent, X_Motion, Y_Motion); VT_ProcessControlButton3Motion();