Searched refs:newWidth (Results 1 - 25 of 80) sorted by last modified time

1234

/haiku/src/apps/terminal/
H A DTermWindow.cpp1568 TermWindow::FrameResized(float newWidth, float newHeight) argument
1570 BWindow::FrameResized(newWidth, newHeight);
H A DTermWindow.h76 virtual void FrameResized(float newWidth, float newHeight);
/haiku/src/kits/tracker/
H A DTextWidget.cpp415 float newWidth = maxWidth; local
416 float right = oldWidth - newWidth;
424 float grow = newWidth - oldWidth;
H A DTitleView.cpp624 float newWidth = where.x + fInitialTrackOffset local
626 if (newWidth < kMinColumnWidth)
627 newWidth = kMinColumnWidth;
629 return newWidth != fTitle->fColumn->Width();
636 float newWidth = where.x + fInitialTrackOffset local
638 if (newWidth < kMinColumnWidth)
639 newWidth = kMinColumnWidth;
643 //bool shrink = (newWidth < fTitle->fColumn->Width());
646 poseView->ResizeColumn(fTitle->fColumn, newWidth, &fLastLineDrawPos,
/haiku/src/kits/interface/
H A DStatusBar.cpp268 BStatusBar::FrameResized(float newWidth, float newHeight) argument
270 BView::FrameResized(newWidth, newHeight);
H A DOutlineListView.cpp241 BOutlineListView::FrameResized(float newWidth, float newHeight) argument
243 BListView::FrameResized(newWidth, newHeight);
H A DScrollView.cpp268 BScrollView::FrameResized(float newWidth, float newHeight) argument
270 BView::FrameResized(newWidth, newHeight);
317 // changes in newWidth
H A DListView.cpp261 BListView::FrameResized(float newWidth, float newHeight) argument
H A DTextView.cpp803 BTextView::FrameResized(float newWidth, float newHeight) argument
805 BView::FrameResized(newWidth, newHeight);
820 newWidth = std::max(dataWidth, newWidth);
824 newWidth - fLayoutData->rightInset,
5116 float newWidth = _TextWidth(); local
5117 float right = oldWidth - newWidth;
5125 float grow = newWidth - oldWidth;
H A DColorControl.cpp998 BColorControl::FrameResized(float newWidth, float newHeight) argument
1000 BControl::FrameResized(newWidth, newHeight);
H A DAlert.cpp357 BAlert::FrameResized(float newWidth, float newHeight) argument
359 BWindow::FrameResized(newWidth, newHeight);
H A DTabView.cpp1157 BTabView::FrameResized(float newWidth, float newHeight) argument
1159 BView::FrameResized(newWidth, newHeight);
H A DButton.cpp471 BButton::FrameResized(float newWidth, float newHeight) argument
473 BControl::FrameResized(newWidth, newHeight);
H A DMenuField.cpp577 BMenuField::FrameResized(float newWidth, float newHeight) argument
579 BView::FrameResized(newWidth, newHeight);
/haiku/headers/os/interface/
H A DOutlineListView.h35 virtual void FrameResized(float newWidth, float newHeight);
H A DListView.h53 virtual void FrameResized(float newWidth, float newHeight);
H A DTextView.h83 virtual void FrameResized(float newWidth, float newHeight);
H A DAlert.h73 virtual void FrameResized(float newWidth, float newHeight);
H A DView.h194 virtual void FrameResized(float newWidth, float newHeight);
H A DPictureButton.h44 virtual void FrameResized(float newWidth, float newHeight);
/haiku/src/servers/app/
H A DServerWindow.cpp1397 float newWidth, newHeight; local
1398 link.Read<float>(&newWidth);
1404 fCurrentView->Name(), newWidth, newHeight));
1406 float deltaWidth = newWidth - fCurrentView->Frame().Width();
/haiku/src/apps/mediaplayer/
H A DMainWin.h38 virtual void FrameResized(float newWidth, float newHeight);
H A DMainWin.cpp421 MainWin::FrameResized(float newWidth, float newHeight) argument
423 if (newWidth != Bounds().Width() || newHeight != Bounds().Height()) {
430 // printf("FrameResized enter: newWidth %.0f, newHeight %.0f\n",
431 // newWidth, newHeight);
434 sNoVideoWidth = fNoVideoWidth = (int)newWidth;
436 int maxVideoWidth = int(newWidth) + 1;
450 fMenuBar->ResizeTo(newWidth, fMenuBarHeight - 1);
471 fControls->ResizeTo(newWidth, fControlsHeight - 1);
/haiku/src/apps/icon-o-matic/
H A DCanvasView.cpp274 CanvasView::VisibleSizeChanged(float oldWidth, float oldHeight, float newWidth, argument
/haiku/src/apps/deskbar/
H A DBarWindow.cpp256 float newWidth; local
258 newWidth = gMinimumWindowWidth;
260 newWidth = gMaximumWindowWidth;
262 newWidth = width;
267 fBarApp->Settings()->width = newWidth;
269 if (oldWidth != newWidth) {

Completed in 324 milliseconds

1234