< prev index next >

src/java.desktop/macosx/native/libjawt/jawt.m

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 44,64 **** { if (awt == NULL) { return JNI_FALSE; } ! if (awt->version != (JAWT_VERSION_1_4 | JAWT_MACOSX_USE_CALAYER) && ! awt->version != JAWT_VERSION_1_7) { return JNI_FALSE; } awt->GetDrawingSurface = awt_GetDrawingSurface; awt->FreeDrawingSurface = awt_FreeDrawingSurface; if (awt->version >= JAWT_VERSION_1_4) { awt->Lock = awt_Lock; awt->Unlock = awt_Unlock; awt->GetComponent = awt_GetComponent; } return JNI_TRUE; } --- 44,70 ---- { if (awt == NULL) { return JNI_FALSE; } ! if (awt->version != (JAWT_VERSION_1_4 | JAWT_MACOSX_USE_CALAYER) ! && awt->version != JAWT_VERSION_1_7 ! && awt->version != JAWT_VERSION_9) { return JNI_FALSE; } awt->GetDrawingSurface = awt_GetDrawingSurface; awt->FreeDrawingSurface = awt_FreeDrawingSurface; if (awt->version >= JAWT_VERSION_1_4) { awt->Lock = awt_Lock; awt->Unlock = awt_Unlock; awt->GetComponent = awt_GetComponent; + if (awt->version >= JAWT_VERSION_9) { + awt->CreateEmbeddedFrame = awt_CreateEmbeddedFrame; + awt->SetBounds = awt_SetBounds; + awt->SynthesizeWindowActivation = awt_SynthesizeWindowActivation; + } } return JNI_TRUE; }
< prev index next >