Searched refs:newHeight (Results 1 - 25 of 78) 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
46 && fBitmap->Bounds().IntegerHeight() >= newHeight) {
58 if (newWidth <= 0 || newHeight <= 0)
62 newHeight - 1), fColorSpace, 0));
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
/haiku/src/apps/icon-o-matic/generic/gui/scrollview/
H A DScroller.h47 float newHeight);
H A DScrollable.h47 float newHeight);
/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);
147 height = newHeight;
/haiku/src/apps/webpositive/
H A DDownloadWindow.h29 virtual void FrameResized(float newWidth, float newHeight);
/haiku/src/apps/cortex/DormantNodeView/
H A DDormantNodeListItem.cpp151 float newHeight = m_fontHeight.ascent + m_fontHeight.descent + m_fontHeight.leading; local
152 if (newHeight < B_MINI_ICON) {
153 newHeight = B_MINI_ICON;
155 newHeight += 2 * M_ICON_V_MARGIN;
156 if (Height() < newHeight) {
157 SetHeight(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.h57 float newHeight);
/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);
H A DMenuBar.h59 virtual void FrameResized(float newWidth, float newHeight);
/haiku/src/tests/kits/interface/menu/menuworld/
H A DViewLayoutFactory.cpp233 float newWidth, newHeight; local
237 newHeight = (resizeDim & RECT_HEIGHT)
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);
217 fHeight = newHeight;
/haiku/src/kits/interface/
H A DMenuBar.cpp235 BMenuBar::FrameResized(float newWidth, float newHeight) argument
240 max_c(fLastBounds->right, newWidth), newHeight);
245 if (newHeight != fLastBounds->Height()) {
246 BRect rect(0, min_c(fLastBounds->bottom, newHeight) - 1,
247 newWidth, max_c(fLastBounds->bottom, newHeight));
251 fLastBounds->Set(0, 0, newWidth, newHeight);
253 BMenu::FrameResized(newWidth, newHeight);
/haiku/src/apps/debuganalyzer/gui/chart/
H A DChart.h64 virtual void FrameResized(float newWidth, float newHeight);

Completed in 147 milliseconds

1234