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

/haiku-fatelf/src/preferences/locale/
H A DLanguageListView.cpp331 BRect dragRect(0.0, 0.0, Bounds().Width(), -1.0);
342 dragRect.bottom += ceilf(item->Height()) + 1.0;
345 if (dragRect.Height() > MAX_DRAG_HEIGHT) {
346 dragRect.bottom = MAX_DRAG_HEIGHT;
352 BBitmap* dragBitmap = new BBitmap(dragRect, B_RGB32, true);
358 BRect itemBounds(dragRect) ;
366 if (itemBounds.bottom > dragRect.bottom)
367 itemBounds.bottom = dragRect.bottom;
409 DragMessage(&message, dragRect.OffsetToCopy(point), this);
/haiku-fatelf/src/apps/icon-o-matic/generic/gui/
H A DListViews.cpp237 BRect dragRect(0.0, 0.0, width, -1.0);
242 dragRect.bottom += ceilf(item->Height()) + 1.0;
243 if (dragRect.Height() > MAX_DRAG_HEIGHT) {
245 dragRect.bottom = MAX_DRAG_HEIGHT;
250 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-fatelf/src/apps/mediaplayer/playlist/
H A DListViews.cpp233 BRect dragRect(0.0, 0.0, width, -1.0);
238 dragRect.bottom += ceilf( item->Height() ) + 1.0;
239 if ( dragRect.Height() > MAX_DRAG_HEIGHT ) {
241 dragRect.bottom = MAX_DRAG_HEIGHT;
246 BBitmap* dragBitmap = new BBitmap( dragRect, B_RGB32, true );
251 BRect itemBounds( dragRect) ;
258 if ( itemBounds.bottom > dragRect.bottom )
259 itemBounds.bottom = dragRect.bottom;
300 DragMessage( &msg, dragRect.OffsetToCopy( point ), this );
/haiku-fatelf/src/apps/cortex/RouteApp/
H A DStatusView.cpp242 BRect dragRect(Bounds());
243 dragRect.left = dragRect.right - 10.0;
244 if (dragRect.Contains(point)) {
/haiku-fatelf/src/apps/debugger/user_interface/gui/team_window/
H A DSourceView.cpp1246 BRect dragRect = region.Frame(); local
1248 if (dragRect.Height() > visibleRect.Height()) {
1249 dragRect.top = 0;
1250 dragRect.bottom = visibleRect.Height();
1252 if (dragRect.Width() > visibleRect.Width()) {
1253 dragRect.left = 0;
1254 dragRect.right = visibleRect.Width();
1256 DragMessage(&message, dragRect);
/haiku-fatelf/src/kits/interface/
H A DColumnListView.cpp2584 BRect dragRect(fSelectedColumnRect);
2585 dragRect.OffsetTo(fCurrentDragPosition.x - fClickPoint.x, 0);
2586 if (dragRect.Intersects(invalidRect)) {
2588 StrokeRect(dragRect);
2763 BRect dragRect(fSelectedColumnRect);
2777 dragRect.OffsetTo(position.x - fClickPoint.x,
2778 position.y - dragRect.Height() / 2);
2779 BeginRectTracking(dragRect, B_TRACK_WHOLE_RECT);
2793 BRect dragRect(fSelectedColumnRect);
2799 dragRect
[all...]
H A DTextView.cpp4864 BRect dragRect = region.Frame(); local
4865 if (!bounds.Contains(dragRect))
4866 dragRect = bounds & dragRect;
4868 DragMessage(&dragMessage, dragRect, dragHandler);
H A DView.cpp1335 BView::DragMessage(BMessage* message, BRect dragRect, BHandler* replyTo) argument
1348 offset -= dragRect.LeftTop();
1350 if (!dragRect.IsValid()) {
1359 BBitmap* bitmap = new(std::nothrow) BBitmap(dragRect, B_RGBA32);
1365 uint32 width = dragRect.IntegerWidth() + 1;
1366 uint32 height = dragRect.IntegerHeight() + 1;
/haiku-fatelf/src/kits/tracker/
H A DPoseView.cpp7304 BRect dragRect(GetDragRect(index));
7311 if (dragRect.Width() < kTransparentDragThreshold.x
7312 && dragRect.Height() < kTransparentDragThreshold.y)
7314 dragBitmap = MakeDragBitmap(dragRect, clickPoint, index, offset);
7320 DragMessage(&message, dragRect);
7330 BPoseView::MakeDragBitmap(BRect dragRect, BPoint clickedPoint, argument
7341 if (!inner.Intersects(dragRect))
7344 inner = inner & dragRect;
7353 if (inner.left > dragRect.left) {
7354 inner.left = max(inner.left - 32, dragRect
[all...]
H A DPoseView.h584 BBitmap* MakeDragBitmap(BRect dragRect, BPoint clickedPoint,
/haiku-fatelf/headers/os/interface/
H A DView.h187 void DragMessage(BMessage* message, BRect dragRect,
/haiku-fatelf/src/kits/app/
H A DApplication.cpp1337 BRect dragRect, BHandler *replyTo)
/haiku-fatelf/src/servers/app/
H A DServerWindow.cpp2027 BRect dragRect; local
2031 link.Read<BRect>(&dragRect);
2043 NULL /* should be dragRect */, offset);
2055 BRect dragRect; local
2058 link.Read<BRect>(&dragRect);

Completed in 204 milliseconds