Home
last modified time | relevance | path

Searched refs:deltaWidth (Results 1 – 6 of 6) 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.cpp4843 BView::ResizeBy(float deltaWidth, float deltaHeight) in ResizeBy() argument
4846 deltaWidth = roundf(deltaWidth); in ResizeBy()
4849 if (deltaWidth == 0 && deltaHeight == 0) in ResizeBy()
4856 fOwner->fLink->Attach<float>(fBounds.Width() + deltaWidth); in ResizeBy()
4864 _ResizeBy((int32)deltaWidth, (int32)deltaHeight); in ResizeBy()
6143 BView::_ResizeBy(int32 deltaWidth, int32 deltaHeight) in _ResizeBy() argument
6145 fBounds.right += deltaWidth; in _ResizeBy()
6159 child->_ParentResizedBy(deltaWidth, deltaHeight); in _ResizeBy()
H A DWindow.cpp3178 int32 deltaWidth = (int32)(fFrame.Width() - fTopView->Bounds().Width()); in _AdoptResize() local
3180 if (deltaWidth == 0 && deltaHeight == 0) in _AdoptResize()
3183 fTopView->_ResizeBy(deltaWidth, deltaHeight); in _AdoptResize()
H A DTextView.cpp4030 float deltaWidth = 0.0; in _FindLineBreak() local
4069 deltaWidth = _TabExpandedStyledWidth(offset, in _FindLineBreak()
4071 strWidth += deltaWidth; in _FindLineBreak()
4086 strWidth -= deltaWidth; in _FindLineBreak()
/haiku/src/servers/app/
H A DServerWindow.cpp1406 float deltaWidth = newWidth - fCurrentView->Frame().Width(); in _DispatchViewMessage() local
1410 fCurrentView->ResizeBy(deltaWidth, deltaHeight, &dirty); in _DispatchViewMessage()
/haiku/docs/user/interface/
H A DView.dox4425 \fn void BView::ResizeBy(float deltaWidth, float deltaHeight)
4426 \brief Resize the view by \a deltaWidth horizontally and \a deltaHeight
4429 \param deltaWidth The number of pixels to resize the view by horizontally.