Lines Matching defs:width

996 			int32 width, height;
997 if (message->FindInt32("width", &width) == B_OK
1004 if (pendingMessage->FindInt32("width", &nextWidth) == B_OK)
1005 width = nextWidth;
1018 if (width != fFrame.Width() || height != fFrame.Height()) {
1021 fFrame.right = fFrame.left + width;
1025 // FrameResized(width, height);
1032 FrameResized(width, height);
1187 float width;
1189 fLink->Read<float>(&width);
1228 if (width != fFrame.Width() || height != fFrame.Height()) {
1232 fFrame.right = fFrame.left + width;
1236 FrameResized(width, height);
1440 SetSizeLimits(minSize.width, maxSize.width,
1530 BWindow::Zoom(BPoint origin, float width, float height)
1535 ResizeTo(width, height);
1612 // there is room above or below Deskbar, start from screen width
1613 // minus borders instead of desktop width minus borders
1993 settings.FindFloat("border width", &borderWidth);
2256 int32 h, int32 hOffset, int32 width, int32 widthOffset,
2262 || (widthOffset >= 0 && widthOffset <= width)
2275 fLink->Attach<int32>(width);
2293 int32* h, int32* hOffset, int32* width, int32* widthOffset,
2306 fLink->Read<int32>(width);
2412 BWindow::ResizeTo(float width, float height)
2417 width = roundf(width);
2421 if (width < fMinWidth)
2422 width = fMinWidth;
2423 else if (width > fMaxWidth)
2424 width = fMaxWidth;
2431 if (width != fFrame.Width() || height != fFrame.Height()) {
2433 fLink->Attach<float>(width);
2438 fFrame.right = fFrame.left + width;
2454 float width = fTopView->PreferredSize().width;
2455 width = std::min(width, fTopView->MaxSize().width);
2456 width = std::max(width, fTopView->MinSize().width);
2463 GetLayout()->GetHeightForWidth(width, NULL, NULL, &height);
2465 ResizeTo(width, height);
3827 \param width The width of the window.
3836 float width = Bounds().Width();
3839 BPoint point(frame.left + (frame.Width() / 2.0f) - (width / 2.0f),
3855 else if (point.x + width > screenFrame.right - borderWidth)
3856 point.x = screenFrame.right - borderWidth - width;
4062 settings.FindFloat("border width", &borderWidth);