Home | History | Annotate | Download | only in WebView

Lines Matching refs:_popupWindow

67     [_popupWindow release];
113 _popupWindow = [[NSWindow alloc] initWithContentRect:scrollFrame styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:NO];
114 [_popupWindow setAlphaValue:0.88f];
115 [_popupWindow setContentView:scrollView];
117 [_popupWindow setHasShadow:YES];
118 [_popupWindow setOneShot:YES];
119 [_popupWindow _setForceActiveControls:YES];
120 [_popupWindow setReleasedWhenClosed:NO];
154 [_popupWindow setFrame:windowFrame display:NO];
160 [_popupWindow setLevel:NSPopUpMenuWindowLevel];
161 [_popupWindow orderFront:nil];
162 [[_view window] addChildWindow:_popupWindow ordered:NSWindowAbove];
167 if (!_popupWindow) {
222 if (_popupWindow) {
224 [[_view window] removeChildWindow:_popupWindow];
225 [_popupWindow orderOut:self];
227 [_popupWindow autorelease];
228 _popupWindow = nil;
247 return _popupWindow != nil;
254 if (!_popupWindow)