Searched refs:deltaWidth (Results 1 - 5 of 5) sorted by relevance

/haiku/headers/os/interface/
H A DView.h718 void _ResizeBy(int32 deltaWidth, int32 deltaHeight);
719 void _ParentResizedBy(int32 deltaWidth,
/haiku/src/kits/interface/
H A DView.cpp4852 BView::ResizeBy(float deltaWidth, float deltaHeight) argument
4855 deltaWidth = roundf(deltaWidth);
4858 if (deltaWidth == 0 && deltaHeight == 0)
4865 fOwner->fLink->Attach<float>(fBounds.Width() + deltaWidth);
4873 _ResizeBy((int32)deltaWidth, (int32)deltaHeight);
6155 BView::_ResizeBy(int32 deltaWidth, int32 deltaHeight) argument
6157 fBounds.right += deltaWidth;
6171 child->_ParentResizedBy(deltaWidth, deltaHeight);
H A DTextView.cpp4030 float deltaWidth = 0.0; local
4069 deltaWidth = _TabExpandedStyledWidth(offset,
4071 strWidth += deltaWidth;
4086 strWidth -= deltaWidth;
H A DWindow.cpp3178 int32 deltaWidth = (int32)(fFrame.Width() - fTopView->Bounds().Width()); local
3180 if (deltaWidth == 0 && deltaHeight == 0)
3183 fTopView->_ResizeBy(deltaWidth, deltaHeight);
/haiku/src/servers/app/
H A DServerWindow.cpp1406 float deltaWidth = newWidth - fCurrentView->Frame().Width(); local
1410 fCurrentView->ResizeBy(deltaWidth, deltaHeight, &dirty);

Completed in 268 milliseconds