Home | History | Annotate | Download | only in Carbon

Lines Matching full:frame

244 		NSRect		frame = { { 0, 0 }, { 400, 400  } };
248 WebView *webView = [[WebView alloc] initWithFrame: frame];
369 HIRect frame;
371 HIViewGetBounds( view, &frame );
372 HIViewConvertRect( &frame, view, NULL );
381 if ( CGRectIntersectsRect( frame, hiRect ) )
550 NSPoint location = NSMakePoint(point.x, [window frame].size.height - point.y);
787 HIRect frame;
791 HIViewGetFrame( inView->fViewRef, &frame );
794 origin.x = frame.origin.x;
795 origin.y = parentBounds.size.height - CGRectGetMaxY( frame );
797 // frame.size.width, frame.size.height );
799 [inView->fWebView setFrameSize: *(NSSize*)&frame.size];
807 HIRect frame;
817 frame.origin.x = bounds.left;
818 frame.origin.y = rootFrame.size.height - bounds.bottom;
819 frame.size.width = bounds.right - bounds.left;
820 frame.size.height = bounds.bottom - bounds.top;
822 // printf( " before frame convert (%g %g) (%g %g)\n", frame.origin.x, frame.origin.y,
823 // frame.size.width, frame.size.height );
825 [inView->fWebView convertRect:*(NSRect*)&frame fromView:nil];
827 // printf( " moving web view to (%g %g) (%g %g)\n", frame.origin.x, frame.origin.y,
828 // frame.size.width, frame.size.height );
830 [inView->fWebView setFrameOrigin: *(NSPoint*)&frame.origin];
831 [inView->fWebView setFrameSize: *(NSSize*)&frame.size];