Searched refs:deltaWidth (Results 1 – 6 of 6) sorted by relevance
/haiku/headers/os/interface/ |
H A D | View.h | 718 void _ResizeBy(int32 deltaWidth, int32 deltaHeight); 719 void _ParentResizedBy(int32 deltaWidth,
|
/haiku/src/kits/interface/ |
H A D | View.cpp | 4843 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 D | Window.cpp | 3178 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 D | TextView.cpp | 4030 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 D | ServerWindow.cpp | 1406 float deltaWidth = newWidth - fCurrentView->Frame().Width(); in _DispatchViewMessage() local 1410 fCurrentView->ResizeBy(deltaWidth, deltaHeight, &dirty); in _DispatchViewMessage()
|
/haiku/docs/user/interface/ |
H A D | View.dox | 4425 \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.
|