Searched refs:dragRect (Results 1 - 13 of 13) sorted by relevance

/haiku/src/preferences/locale/
H A DLanguageListView.cpp340 BRect dragRect(0.0, 0.0, Bounds().Width(), -1.0);
351 dragRect.bottom += ceilf(item->Height()) + 1.0;
354 if (dragRect.Height() > MAX_DRAG_HEIGHT) {
355 dragRect.bottom = MAX_DRAG_HEIGHT;
361 BBitmap* dragBitmap = new BBitmap(dragRect, B_RGB32, true);
367 BRect itemBounds(dragRect) ;
375 if (itemBounds.bottom > dragRect.bottom)
376 itemBounds.bottom = dragRect.bottom;
418 DragMessage(&message, dragRect.OffsetToCopy(point), this);
/haiku/src/apps/mediaplayer/playlist/
H A DListViews.cpp238 BRect dragRect(0.0, 0.0, width, -1.0);
243 dragRect.bottom += ceilf( item->Height() ) + 1.0;
244 if ( dragRect.Height() > MAX_DRAG_HEIGHT ) {
246 dragRect.bottom = MAX_DRAG_HEIGHT;
251 BBitmap* dragBitmap = new BBitmap( dragRect, B_RGB32, true );
256 BRect itemBounds( dragRect) ;
263 if ( itemBounds.bottom > dragRect.bottom )
264 itemBounds.bottom = dragRect.bottom;
305 DragMessage( &msg, dragRect.OffsetToCopy( point ), this );
/haiku/src/apps/icon-o-matic/generic/gui/
H A DListViews.cpp822 BRect dragRect(0, 0, width, -1);
827 dragRect.bottom += ceilf(item->Height()) + 1;
828 if (dragRect.Height() > MAX_DRAG_HEIGHT) {
830 dragRect.bottom = MAX_DRAG_HEIGHT;
836 BBitmap* dragBitmap = new BBitmap(dragRect, B_RGBA32, true);
842 BRect itemFrame(dragRect) ;
851 if (itemFrame.bottom > dragRect.bottom)
852 itemFrame.bottom = dragRect.bottom;
895 DragMessage(&msg, dragRect.OffsetToCopy(where), this);
/haiku/src/apps/cortex/RouteApp/
H A DStatusView.cpp242 BRect dragRect(Bounds());
243 dragRect.left = dragRect.right - 10.0;
244 if (dragRect.Contains(point)) {
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DSourceView.cpp1484 BRect dragRect = region.Frame(); local
1486 if (dragRect.Height() > visibleRect.Height()) {
1487 dragRect.top = 0;
1488 dragRect.bottom = visibleRect.Height();
1490 if (dragRect.Width() > visibleRect.Width()) {
1491 dragRect.left = 0;
1492 dragRect.right = visibleRect.Width();
1494 DragMessage(&message, dragRect);
/haiku/src/kits/interface/
H A DColumnListView.cpp2822 BRect dragRect(fSelectedColumnRect);
2823 dragRect.OffsetTo(fCurrentDragPosition.x - fClickPoint.x, 0);
2824 if (dragRect.Intersects(invalidRect)) {
2826 StrokeRect(dragRect);
3008 BRect dragRect(fSelectedColumnRect);
3022 dragRect.OffsetTo(position.x - fClickPoint.x,
3023 position.y - dragRect.Height() / 2);
3024 BeginRectTracking(dragRect, B_TRACK_WHOLE_RECT);
3038 BRect dragRect(fSelectedColumnRect);
3044 dragRect
[all...]
H A DTextView.cpp4906 BRect dragRect = region.Frame(); local
4907 if (!bounds.Contains(dragRect))
4908 dragRect = bounds & dragRect;
4910 DragMessage(&dragMessage, dragRect, dragHandler);
H A DView.cpp1431 BView::DragMessage(BMessage* message, BRect dragRect, BHandler* replyTo) argument
1444 offset -= dragRect.LeftTop();
1446 if (!dragRect.IsValid()) {
1455 BBitmap* bitmap = new(std::nothrow) BBitmap(dragRect, B_RGBA32);
1461 uint32 width = dragRect.IntegerWidth() + 1;
1462 uint32 height = dragRect.IntegerHeight() + 1;
/haiku/src/kits/tracker/
H A DPoseView.cpp7622 BRect dragRect(GetDragRect(index));
7626 if (dragRect.Width() < kTransparentDragThreshold.x
7627 && dragRect.Height() < kTransparentDragThreshold.y) {
7628 dragBitmap = MakeDragBitmap(dragRect, clickPoint, index, offset);
7632 dragBitmap = MakeDragBitmap(dragRect, clickPoint, index, offset);
7638 DragMessage(&message, dragRect);
7648 BPoseView::MakeDragBitmap(BRect dragRect, BPoint clickedPoint, argument
7659 if (!inner.Intersects(dragRect))
7662 inner = inner & dragRect;
7671 if (inner.left > dragRect
[all...]
H A DPoseView.h580 BBitmap* MakeDragBitmap(BRect dragRect, BPoint clickedPoint,
/haiku/headers/os/interface/
H A DView.h204 void DragMessage(BMessage* message, BRect dragRect,
/haiku/src/servers/app/
H A DServerWindow.cpp2340 BRect dragRect; local
2344 link.Read<BRect>(&dragRect);
2356 NULL /* should be dragRect */, offset);
2368 BRect dragRect; local
2371 link.Read<BRect>(&dragRect);
/haiku/src/kits/app/
H A DApplication.cpp1495 BRect dragRect, BHandler* replyTo)

Completed in 743 milliseconds