Searched refs:styleBits (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPlatformWindow.java51 private native long nativeCreateNSWindow(long nsViewPtr, long styleBits, double x, double y, double w, double h); argument
231 final int styleBits = getInitialStyleBits();
237 final long nativeWindowPtr = nativeCreateNSWindow(contentView.getAWTView(), styleBits, 0, 0, 0, 0);
266 int styleBits = DECORATED | HAS_SHADOW | CLOSEABLE | MINIMIZABLE | ZOOMABLE | RESIZABLE;
269 styleBits = SET(styleBits, SHOULD_BECOME_KEY, true);
270 styleBits = SET(styleBits, SHOULD_BECOME_MAIN, true);
277 styleBits = SET(styleBits, MINIMIZABL
[all...]
H A DCWarningWindow.java272 int styleBits = 0;
273 CPlatformWindow.SET(styleBits, CPlatformWindow.UTILITY, true);
274 return styleBits;
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DAWTWindow.h45 jint styleBits; variable
58 @property (nonatomic) jint styleBits; variable
62 styleBits:(jint)styleBits
H A DAWTWindow.m141 @synthesize styleBits;
156 + (NSUInteger) styleMaskForStyleBits:(jint)styleBits {
158 if (IS(styleBits, DECORATED)) {
160 if (IS(styleBits, CLOSEABLE)) type |= NSClosableWindowMask;
161 if (IS(styleBits, MINIMIZABLE)) type |= NSMiniaturizableWindowMask;
162 if (IS(styleBits, RESIZABLE)) type |= NSResizableWindowMask;
167 if (IS(styleBits, TEXTURED)) type |= NSTexturedBackgroundWindowMask;
168 if (IS(styleBits, UNIFIED)) type |= NSUnifiedTitleAndToolbarWindowMask;
169 if (IS(styleBits, UTILITY)) type |= NSUtilityWindowMask;
170 if (IS(styleBits, HU
[all...]

Completed in 34 milliseconds