Searched refs:bounds (Results 251 - 275 of 293) sorted by relevance

<<1112

/haiku/src/add-ons/translators/bmp/
H A DBMPTranslator.cpp1026 static_cast<uint32> (bitsHeader.bounds.Width() + 1);
1028 static_cast<int32> (bitsHeader.bounds.Height() + 1);
1752 bitsHeader.bounds.left = 0;
1753 bitsHeader.bounds.top = 0;
1754 bitsHeader.bounds.right = msheader.width - 1;
1755 bitsHeader.bounds.bottom = abs(msheader.height) - 1;
/haiku/src/apps/mediaplayer/interface/
H A DPeakView.cpp335 BRect bounds(0, 0, width - 1, channels - 1);
336 fBackBitmap = new(std::nothrow) BBitmap(bounds, 0, B_RGB32);
/haiku/src/kits/interface/
H A DCheckBox.cpp217 BRect bounds = Bounds(); local
228 bool inside = bounds.Contains(where);
H A DIcon.cpp152 BIcon::CreateBitmap(const BRect& bounds, color_space colorSpace, uint32 which) argument
154 BBitmap* bitmap = new(std::nothrow) BBitmap(bounds, colorSpace);
H A DButton.cpp193 BRect bounds = Bounds(); local
202 inside = bounds.Contains(where);
/haiku/src/apps/mediaplayer/media_node_framework/video/
H A DVideoConsumer.cpp197 BRect bounds(0, 0, width - 1, height - 1);
209 fBitmap[i] = new BBitmap(bounds, bitmapFlags, colorSpace);
/haiku/src/kits/tracker/
H A DThumbnails.cpp91 ScaleBitmap(BBitmap* source, BBitmap& dest, BRect bounds, color_space colorSpace) argument
93 dest = BBitmap(bounds, colorSpace, true);
/haiku/src/apps/showimage/
H A DShowImageWindow.cpp1154 BRect bounds = fImageView->Bitmap()->Bounds(); local
1155 fNumberFormat.Format(width, bounds.IntegerWidth() + 1);
1156 fNumberFormat.Format(height, bounds.IntegerHeight() + 1);
1546 BRect bounds(bitmap->Bounds());
1547 printJob.DrawView(fImageView, bounds, BPoint(0, 0));
1633 BRect bounds = fImageView->Bitmap()->Bounds();
1634 int32 width = bounds.IntegerWidth() + 1;
1635 int32 height = bounds.IntegerHeight() + 1;
/haiku/src/apps/mediaplayer/media_node_framework/
H A DPlaybackManager.h168 virtual void NotifyVideoBoundsChanged(BRect bounds) const;
/haiku/src/apps/debugger/user_interface/gui/inspector_window/
H A DMemoryView.cpp727 BRect bounds = Bounds(); local
728 max = totalHeight - bounds.Height();
729 scrollBar->SetProportion(bounds.Height() / totalHeight);
730 scrollBar->SetSteps(fLineHeight, bounds.Height());
/haiku/src/apps/mediaplayer/
H A DController.h175 virtual void NotifyVideoBoundsChanged(BRect bounds) const;
/haiku/src/apps/magnify/
H A DMagnify.h71 virtual void ScreenChanged(BRect bounds, color_space cs);
/haiku/src/servers/app/
H A DView.h74 // clips to each views bounds
75 void ConvertToVisibleInTopView(IntRect* bounds) const;
242 // offset of the local area (bounds)
/haiku/src/libs/icon/
H A DIconUtils.cpp539 BRect bounds; local
545 bounds.Set(0, 0, B_MINI_ICON - 1, B_MINI_ICON - 1);
552 bounds.Set(0, 0, B_LARGE_ICON - 1, B_LARGE_ICON - 1);
576 if (icon->ColorSpace() == B_CMAP8 && icon->Bounds() != bounds)
582 || icon->Bounds() != bounds);
/haiku/src/add-ons/translators/tga/
H A DTGATranslator.cpp1217 imagespec.width = static_cast<uint16> (bitsHeader.bounds.Width() + 1);
1218 imagespec.height = static_cast<uint16> (bitsHeader.bounds.Height() + 1);
2117 bitsHeader.bounds.left = 0;
2118 bitsHeader.bounds.top = 0;
2119 bitsHeader.bounds.right = imagespec.width - 1;
2120 bitsHeader.bounds.bottom = imagespec.height - 1;
/haiku/src/tools/html5_remote_desktop/
H A DHaikuRemoteDesktop.js891 this.bounds = new RemoteRect(remoteMessage);
1715 var bounds = new RemoteRect(remoteMessage);
1722 var width = bounds.integerWidth() + 1;
1723 var height = bounds.integerHeight() + 1;
1743 = context.getImageData(bounds.left, bounds.top, width, height);
/haiku/src/apps/debuganalyzer/gui/main_window/
H A DSchedulingPage.cpp531 BRect bounds(Bounds());
532 Invalidate(BRect(bounds.left, top, bounds.right, bottom));
593 BRect bounds(Bounds());
595 bounds.Width(), bounds.Height());
/haiku/src/apps/deskbar/
H A DResourceSet.cpp96 BitmapTypeItem(BRect bounds, uint32 flags, color_space depth, argument
99 : BBitmap(bounds, flags, depth, bytesPerRow, screenID)
/haiku/src/apps/mail/
H A DAddressTextControl.cpp669 BRect bounds(Bounds());
676 be_control_look->DrawTextControlBorder(this, bounds, updateRect, base,
/haiku/src/preferences/network/
H A DNetworkWindow.cpp75 void DrawItem(BView* owner, BRect bounds, bool complete) argument
78 BStringItem::DrawItem(owner, bounds, complete);
/haiku/headers/private/interface/
H A DColumnListView.h401 void _GetChildViewRects(const BRect& bounds,
/haiku/src/add-ons/translators/raw/
H A DRAWTranslator.cpp324 header.bounds.Set(0, 0, data.output_width - 1, data.output_height - 1);
/haiku/src/apps/deskcalc/
H A DCalcView.cpp614 BRect bounds(Bounds());
615 bounds.left = bounds.right - fCalcIcon->Bounds().Width();
616 if (bounds.Contains(point)) {
/haiku/src/tests/kits/interface/layout/
H A DLayoutTest1.cpp66 BRect bounds(Bounds());
67 StrokeRect(bounds);
69 BPoint rightBottom = bounds.RightBottom();
/haiku/src/servers/app/drawing/interface/virtual/
H A DDWindowHWInterface.cpp84 DView(BRect bounds);
126 DView::DView(BRect bounds) argument
128 BView(bounds, "graphics card view", B_FOLLOW_ALL, 0)

Completed in 181 milliseconds

<<1112