< prev index next >

src/java.desktop/macosx/native/include/jawt_md.h

Print this page




  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 #ifndef _JAVASOFT_JAWT_MD_H_
  27 #define _JAVASOFT_JAWT_MD_H_
  28 
  29 #include "jawt.h"
  30 
  31 #ifdef __OBJC__
  32 #import <QuartzCore/CALayer.h>
  33 #endif
  34 
  35 #ifdef __cplusplus
  36 extern "C" {
  37 #endif
  38 
  39 /*
  40  * Mac OS X specific declarations for AWT native interface.
  41  * See notes in jawt.h for an example of use.
  42  */
  43 
  44 /*
  45  * When calling JAWT_GetAWT with a JAWT version less than 1.7, you must pass this
  46  * flag or you will not be able to get a valid drawing surface and JAWT_GetAWT will
  47  * return false. This is to maintain compatibility with applications that used the
  48  * interface with Java 6 which had multiple rendering models. This flag is not necessary
  49  * when JAWT version 1.7 or greater is used as this is the only supported rendering mode.
  50  *
  51  * Example:
  52  *   JAWT awt;
  53  *   awt.version = JAWT_VERSION_1_4 | JAWT_MACOSX_USE_CALAYER;
  54  *   jboolean success = JAWT_GetAWT(env, &awt);
  55  */
  56 #define JAWT_MACOSX_USE_CALAYER 0x80000000
  57 
  58 /*
  59  * When the native Cocoa toolkit is in use, the pointer stored in
  60  * JAWT_DrawingSurfaceInfo->platformInfo points to a NSObject that conforms to the


  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 #ifndef _JAVASOFT_JAWT_MD_H_
  27 #define _JAVASOFT_JAWT_MD_H_
  28 
  29 #include "jawt.h"
  30 
  31 #ifdef __OBJC__
  32 #import <QuartzCore/CALayer.h>
  33 #endif
  34 
  35 #ifdef __cplusplus
  36 extern "C" {
  37 #endif
  38 
  39 /*
  40  * MacOS specific declarations for AWT native interface.
  41  * See notes in jawt.h for an example of use.
  42  */
  43 
  44 /*
  45  * When calling JAWT_GetAWT with a JAWT version less than 1.7, you must pass this
  46  * flag or you will not be able to get a valid drawing surface and JAWT_GetAWT will
  47  * return false. This is to maintain compatibility with applications that used the
  48  * interface with Java 6 which had multiple rendering models. This flag is not necessary
  49  * when JAWT version 1.7 or greater is used as this is the only supported rendering mode.
  50  *
  51  * Example:
  52  *   JAWT awt;
  53  *   awt.version = JAWT_VERSION_1_4 | JAWT_MACOSX_USE_CALAYER;
  54  *   jboolean success = JAWT_GetAWT(env, &awt);
  55  */
  56 #define JAWT_MACOSX_USE_CALAYER 0x80000000
  57 
  58 /*
  59  * When the native Cocoa toolkit is in use, the pointer stored in
  60  * JAWT_DrawingSurfaceInfo->platformInfo points to a NSObject that conforms to the
< prev index next >