Lines Matching refs:height

482 MainWin::Zoom(BPoint /*position*/, float /*width*/, float /*height*/)
1133 int height;
1136 fController->GetSize(&width, &height,
1138 VideoFormatChange(width, height, widthAspect, heightAspect);
1145 int height;
1146 fController->GetSize(&width, &height);
1147 VideoFormatChange(width, height, width, height);
1450 int height;
1451 fController->GetSize(&width, &height);
1453 lround(width * widthScale), height);
1462 // width/height should be restored too, display aspect is not known,
1466 int height;
1467 fController->GetSize(&width, &height);
1468 VideoFormatChange(width, height, lround(width * widthScale), height);
1477 // width/height should be restored too.
1480 int height;
1481 fController->GetSize(&width, &height);
1482 VideoFormatChange(width, height, widthAspect, heightAspect);
1488 MainWin::VideoFormatChange(int width, int height, int widthAspect,
1493 printf("VideoFormatChange enter: width %d, height %d, "
1494 "aspect ratio: %d:%d\n", width, height, widthAspect, heightAspect);
1500 fSourceHeight = height;
1855 int height;
1858 fController->GetSize(&width, &height, &widthAspect, &heightAspect);
1873 item->SetMarked(width == fWidthAspect && height == fHeightAspect);
1994 MainWin::_GetMinimumWindowSize(int& width, int& height) const
1997 height = 0;
2001 height = fMenuBarHeight + fControlsHeight;
2017 // Enlarge height
2094 int height;
2095 _GetMinimumWindowSize(width, height);
2100 height = height + videoHeight - 1;
2115 frame.bottom = frame.top + height;
2134 shrinkScale = (float)(height - heightDiff) / height;
2136 // Resize width/height and center window
2138 height = lround(height * shrinkScale);
2140 (screenFrame.top + screenFrame.bottom - height) / 2);
2158 ResizeTo(width, height);
2163 MainWin::_ResizeVideoView(int x, int y, int width, int height)
2172 float factor = min_c(width / scaledWidth, height / scaledHeight);
2177 if (renderHeight > height)
2178 renderHeight = height;
2181 int yOffset = (height - renderHeight) / 2;
2184 fVideoView->ResizeTo(width - 1, height - 1);
2190 fVideoView->SetSubTitleMaxBottom(height - 1);
2686 float height = fControls->Bounds().Height();
2687 float moveDist = show ? -height : height;