Searched refs:newWidth (Results 1 - 25 of 80) sorted by relevance

1234

/haiku/src/servers/app/drawing/
H A DBitmapDrawingEngine.cpp42 BitmapDrawingEngine::SetSize(int32 newWidth, int32 newHeight) argument
44 if (fBitmap != NULL && newWidth > 0 && newHeight > 0
45 && fBitmap->Bounds().IntegerWidth() >= newWidth
58 if (newWidth <= 0 || newHeight <= 0)
61 fBitmap.SetTo(new(std::nothrow) UtilityBitmap(BRect(0, 0, newWidth - 1,
H A DBitmapDrawingEngine.h24 status_t SetSize(int32 newWidth, int32 newHeight);
/haiku/src/preferences/repositories/
H A DAddRepoWindow.h24 virtual void FrameResized(float newWidth, float newHeight);
H A DAddRepoWindow.cpp113 AddRepoWindow::FrameResized(float newWidth, float newHeight) argument
115 sAddWindowWidth = newWidth;
/haiku/src/apps/icon-o-matic/generic/gui/scrollview/
H A DScroller.h46 float newWidth,
H A DScrollable.h46 float newWidth,
/haiku/src/tests/kits/opengl/direct_mode/
H A DGLDirectMode.cpp19 virtual void FrameResized(float newWidth, float newHeight);
140 void SampleGLView::FrameResized(float newWidth, float newHeight) argument
142 BGLView::FrameResized(newWidth, newHeight);
146 width = newWidth;
/haiku/src/apps/webpositive/
H A DDownloadWindow.h29 virtual void FrameResized(float newWidth, float newHeight);
/haiku/src/kits/interface/
H A DOptionPopUp.cpp230 float newWidth = fMenuField->StringWidth(fMenuField->Label()); local
231 if (newWidth > 0.f)
232 newWidth += kLabelSpace;
233 fMenuField->SetDivider(newWidth);
313 float newWidth = fMenuField->StringWidth(BControl::Label()); local
314 fMenuField->SetDivider(newWidth + kLabelSpace);
H A DMenuBar.cpp235 BMenuBar::FrameResized(float newWidth, float newHeight) argument
238 if (newWidth != fLastBounds->Width()) {
239 BRect rect(min_c(fLastBounds->right, newWidth), 0,
240 max_c(fLastBounds->right, newWidth), newHeight);
247 newWidth, max_c(fLastBounds->bottom, newHeight));
251 fLastBounds->Set(0, 0, newWidth, newHeight);
253 BMenu::FrameResized(newWidth, newHeight);
/haiku/src/apps/pairs/
H A DPairsView.h40 virtual void FrameResized(float newWidth, float newHeight);
H A DPairsView.cpp131 PairsView::FrameResized(float newWidth, float newHeight) argument
146 Invalidate(BRect(0, 0, newWidth, newHeight));
147 BView::FrameResized(newWidth, newHeight);
/haiku/src/kits/print/
H A DPrintPanel.cpp160 BPrintPanel::FrameResized(float newWidth, float newHeight) argument
162 BWindow::FrameResized(newWidth, newHeight);
/haiku/headers/private/print/
H A DPrintPanel.h44 virtual void FrameResized(float newWidth, float newHeight);
/haiku/src/apps/icon-o-matic/
H A DCanvasView.h56 float oldHeight, float newWidth,
/haiku/headers/os/interface/
H A DPopUpMenu.h39 virtual void FrameResized(float newWidth, float newHeight);
H A DButton.h68 virtual void FrameResized(float newWidth, float newHeight);
H A DCheckBox.h38 virtual void FrameResized(float newWidth, float newHeight);
H A DStatusBar.h43 virtual void FrameResized(float newWidth, float newHeight);
H A DRadioButton.h48 virtual void FrameResized(float newWidth, float newHeight);
H A DStringView.h49 virtual void FrameResized(float newWidth, float newHeight);
/haiku/src/tests/kits/interface/menu/menuworld/
H A DViewLayoutFactory.cpp233 float newWidth, newHeight; local
235 newWidth = (resizeDim & RECT_WIDTH)
239 pView->ResizeTo(newWidth, newHeight);
/haiku/src/add-ons/screen_savers/flurry/
H A DFlurry.cpp209 FlurryView::FrameResized(float newWidth, float newHeight) argument
213 BGLView::FrameResized(newWidth, newHeight);
216 fWidth = newWidth;
/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) {
/haiku/src/apps/debuganalyzer/gui/chart/
H A DChart.h64 virtual void FrameResized(float newWidth, float newHeight);

Completed in 142 milliseconds

1234