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

/haiku/src/kits/tracker/
H A DIconMenuItem.cpp156 float deltaHeight = fHeightDelta < 0 ? -fHeightDelta : 0; local
157 where.y += ceil(deltaHeight / 2);
448 float deltaHeight = fHeightDelta < 0 ? -fHeightDelta : 0; local
449 where.y += ceilf(deltaHeight / 2);
/haiku/headers/os/interface/
H A DView.h718 void _ResizeBy(int32 deltaWidth, int32 deltaHeight);
720 int32 deltaHeight);
/haiku/src/kits/interface/
H A DView.cpp4852 BView::ResizeBy(float deltaWidth, float deltaHeight) argument
4856 deltaHeight = roundf(deltaHeight);
4858 if (deltaWidth == 0 && deltaHeight == 0)
4866 fOwner->fLink->Attach<float>(fBounds.Height() + deltaHeight);
4873 _ResizeBy((int32)deltaWidth, (int32)deltaHeight);
6155 BView::_ResizeBy(int32 deltaWidth, int32 deltaHeight) argument
6158 fBounds.bottom += deltaHeight;
6171 child->_ParentResizedBy(deltaWidth, deltaHeight);
H A DWindow.cpp3179 int32 deltaHeight = (int32)(fFrame.Height() - fTopView->Bounds().Height()); local
3180 if (deltaWidth == 0 && deltaHeight == 0)
3183 fTopView->_ResizeBy(deltaWidth, deltaHeight);
/haiku/src/servers/app/
H A DServerWindow.cpp1407 float deltaHeight = newHeight - fCurrentView->Frame().Height(); local
1410 fCurrentView->ResizeBy(deltaWidth, deltaHeight, &dirty);

Completed in 105 milliseconds