Searched refs:bounds (Results 126 - 150 of 293) sorted by relevance

1234567891011>>

/haiku/src/add-ons/translators/wonderbrush/support/
H A Dbitmap_compression.cpp107 ret = into->AddRect("construction bounds", bitmap->Bounds());
134 BRect bounds; local
144 && (ret = from->FindRect("construction bounds",
145 &bounds)) >= B_OK) {
158 bounds, format);
/haiku/src/apps/pulse/
H A DPulseWindow.cpp38 BRect bounds = Bounds(); local
39 fNormalPulseView = new NormalPulseView(bounds);
42 fMiniPulseView = new MiniPulseView(bounds, "MiniPulseView",
/haiku/src/bin/desklink/
H A DDeskButton.cpp65 BRect bounds; local
66 message->FindRect("bounds", &bounds);
68 fSegments = new BBitmap(bounds, B_RGBA32);
103 data->AddRect("bounds", fSegments->Bounds());
/haiku/src/tests/servers/app/newClipping/
H A DMyView.cpp120 BRect bounds(fMovingLayer->Bounds());
121 fMovingLayer->ConvertToScreen2(&bounds);
122 BRect resizeRect(bounds.right-10, bounds.bottom-10, bounds.right, bounds.bottom);
/haiku/src/apps/diskprobe/
H A DDataView.cpp454 // clip the point into our data bounds
456 BRect bounds = DataBounds(true); local
457 if (point.x < bounds.left)
458 point.x = bounds.left;
459 else if (point.x > bounds.right)
460 point.x = bounds.right;
462 if (point.y < bounds.top)
463 point.y = bounds.top;
464 else if (point.y >= bounds.bottom - kVerticalSpace)
465 point.y = bounds
826 BRect bounds = Bounds(); local
1044 BRect bounds = Bounds(); local
1426 BRect bounds = DataBounds(); local
[all...]
/haiku/src/apps/icon-o-matic/transformable/
H A DPerspectiveBox.cpp187 BRect bounds; local
188 bounds.left = min4(lt.x, rt.x, lb.x, rb.x);
189 bounds.top = min4(lt.y, rt.y, lb.y, rb.y);
190 bounds.right = max4(lt.x, rt.x, lb.x, rb.x);
191 bounds.bottom = max4(lt.y, rt.y, lb.y, rb.y);
192 return bounds;
/haiku/headers/private/interface/
H A DPrivateScreen.h57 BRect* bounds);
59 BRect* bounds);
H A DIcon.h33 BBitmap* CreateBitmap(const BRect& bounds,
/haiku/src/preferences/printers/
H A DPrinterListView.cpp376 PrinterItem::DrawItem(BView *owner, BRect /*bounds*/, bool complete)
390 BRect bounds = list->ItemFrame(list->IndexOf(this)); local
402 owner->FillRect(bounds);
409 BPoint iconPt(bounds.LeftTop() + BPoint(2.0, 2.0));
415 float totalWidth = bounds.Width() - iconColumnWidth;
426 BPoint pendingPt(bounds.right - width - 8.0, namePt.y);
427 BPoint commentPt(bounds.right - width - 8.0, driverPt.y);
471 owner->TruncateString(&s, B_TRUNCATE_END, bounds.Width() - pendingPt.x);
475 owner->TruncateString(&s, B_TRUNCATE_MIDDLE, bounds.Width() - commentPt.x);
H A DJobListView.h54 void DrawItem(BView *owner, BRect bounds,
/haiku/src/servers/app/drawing/
H A DAlphaMask.cpp118 AlphaMask::SetCanvasGeometry(IntPoint origin, IntRect bounds) argument
122 if (origin == fCanvasOrigin && bounds.Width() == fCanvasBounds.Width()
123 && bounds.Height() == fCanvasBounds.Height())
129 fCanvasBounds = IntRect(0, 0, bounds.Width(), bounds.Height());
132 fPreviousMask->SetCanvasGeometry(origin, bounds);
137 // drew the alpha mask clipped to the (old) bounds of the
157 AlphaMask::_CreateTemporaryBitmap(BRect bounds) const
159 BReference<UtilityBitmap> bitmap(new(std::nothrow) UtilityBitmap(bounds,
H A DDrawingEngine.cpp102 DrawTransaction(DrawingEngine *engine, const BRect &bounds) argument
107 fDirty.Set(bounds);
764 // TODO: figure out bounds and hide cursor depending on that
776 // TODO: figure out bounds and hide cursor depending on that
831 DrawingEngine::DrawPolygon(BPoint* ptlist, int32 numpts, BRect bounds, argument
836 make_rect_valid(bounds);
838 extend_by_stroke_width(bounds, fPainter->PenSize());
839 DrawTransaction transaction(this, fPainter->TransformAndClipRect(bounds));
848 DrawingEngine::FillPolygon(BPoint* ptlist, int32 numpts, BRect bounds, argument
853 make_rect_valid(bounds);
1179 DrawShape(const BRect& bounds, int32 opCount, const uint32* opList, int32 ptCount, const BPoint* ptList, bool filled, const BPoint& viewToScreenOffset, float viewScale) argument
1207 FillShape(const BRect& bounds, int32 opCount, const uint32* opList, int32 ptCount, const BPoint* ptList, const BGradient& gradient, const BPoint& viewToScreenOffset, float viewScale) argument
1233 DrawTriangle(BPoint* pts, const BRect& bounds, bool filled) argument
1252 FillTriangle(BPoint* pts, const BRect& bounds, const BGradient& gradient) argument
1474 ReadBitmap(ServerBitmap* bitmap, bool drawCursor, BRect bounds) argument
[all...]
/haiku/src/add-ons/translators/jpeg/
H A DJPEGTranslator.cpp849 BRect bounds;
850 bounds.left = B_BENDIAN_TO_HOST_FLOAT(header.bounds.left);
851 bounds.top = B_BENDIAN_TO_HOST_FLOAT(header.bounds.top);
852 bounds.right = B_BENDIAN_TO_HOST_FLOAT(header.bounds.right);
853 bounds.bottom = B_BENDIAN_TO_HOST_FLOAT(header.bounds.bottom);
857 int width = bounds
[all...]
/haiku/src/kits/interface/
H A DTabView.cpp917 BRect bounds(Bounds());
918 BRect tabFrame(bounds);
936 be_control_look->DrawTabFrame(this, tabFrame, bounds, base, 0,
998 const BRect bounds(Bounds());
1015 return BRect(offset + x, bounds.bottom - height,
1017 bounds.bottom);
1022 return BRect(bounds.right - height, offset + x,
1023 bounds.right, offset + x
1046 return BRect(offset + index * width, bounds.bottom - height,
1047 offset + index * width + width, bounds
1504 BRect bounds = Bounds(); local
[all...]
H A DScreen.cpp150 BScreen::GetBitmap(BBitmap** _bitmap, bool drawCursor, BRect* bounds) argument
153 return fScreen->GetBitmap(_bitmap, drawCursor, bounds);
160 BScreen::ReadBitmap(BBitmap* bitmap, bool drawCursor, BRect* bounds) argument
163 return fScreen->ReadBitmap(bitmap, drawCursor, bounds);
/haiku/src/apps/networkstatus/
H A DRadioView.h44 static void _Compute(const BRect& bounds, BPoint& center,
H A DRadioView.cpp194 RadioView::_Compute(const BRect& bounds, BPoint& center, int32& count, argument
197 center.Set(roundf(bounds.Width() / 2), bounds.bottom);
206 center.x += bounds.left;
/haiku/src/add-ons/translators/exr/
H A DEXRTranslator.cpp140 bitsHeader.bounds.left = 0;
141 bitsHeader.bounds.top = 0;
142 bitsHeader.bounds.right = displayWidth - 1;
143 bitsHeader.bounds.bottom = displayHeight - 1;
/haiku/src/add-ons/screen_savers/ifs/
H A DIFSSaver.h35 void _Init(BRect bounds);
/haiku/src/add-ons/screen_savers/flurry/
H A DFlurry.cpp61 FlurryView::FlurryView(BRect bounds) argument
63 BGLView(bounds, (const char *)NULL, B_FOLLOW_ALL,
71 fWidth = bounds.Width();
72 fHeight = bounds.Height();
H A DFlurry.h19 FlurryView(BRect bounds);
/haiku/src/servers/app/drawing/Painter/
H A DTransformable.h54 // transforms the rectangle "bounds" and
56 BRect TransformBounds(const BRect& bounds) const;
/haiku/src/add-ons/screen_savers/spider/
H A DSpiderSaver.h63 void _Init(BRect bounds);
H A DSpiderSaver.cpp197 SpiderSaver::_Init(BRect bounds) argument
199 _AllocBackBitmap(bounds.Width(), bounds.Height());
211 fQueues[i] = new PolygonQueue(new Polygon(bounds,
/haiku/src/add-ons/translators/icns/
H A DICNSLoader.cpp150 bitsHeader.bounds.left = 0;
151 bitsHeader.bounds.top = 0;
152 bitsHeader.bounds.right = iconImage.imageWidth - 1;
153 bitsHeader.bounds.bottom = iconImage.imageHeight - 1;

Completed in 101 milliseconds

1234567891011>>