Searched refs:dragBitmap (Results 1 - 11 of 11) sorted by relevance

/haiku/src/preferences/locale/
H A DLanguageListView.cpp361 BBitmap* dragBitmap = new BBitmap(dragRect, B_RGB32, true); local
362 if (dragBitmap->IsValid()) {
363 BView* view = new BView(dragBitmap->Bounds(), "helper", B_FOLLOW_NONE,
365 dragBitmap->AddChild(view);
366 dragBitmap->Lock();
385 uint8* bits = (uint8*)dragBitmap->Bits();
386 int32 height = (int32)dragBitmap->Bounds().Height() + 1;
387 int32 width = (int32)dragBitmap->Bounds().Width() + 1;
388 int32 bpr = dragBitmap->BytesPerRow();
409 dragBitmap
[all...]
/haiku/src/apps/cortex/DormantNodeView/
H A DDormantNodeListItem.cpp224 BBitmap *dragBitmap = new BBitmap(m_frame.OffsetToCopy(BPoint(0.0, 0.0)), B_RGBA32, true); local
225 dragBitmap->Lock(); {
226 BView *dragView = new BView(dragBitmap->Bounds(), "", B_FOLLOW_NONE, 0);
227 dragBitmap->AddChild(dragView);
252 dragBitmap->Unlock();
253 return dragBitmap;
/haiku/src/kits/tracker/
H A DDraggableContainerIcon.cpp129 BBitmap* dragBitmap = new BBitmap(rect, B_RGBA32, true); local
131 dragBitmap->Lock();
132 BView* view = new BView(dragBitmap->Bounds(), "", B_FOLLOW_NONE, 0);
133 dragBitmap->AddChild(view);
171 dragBitmap->Unlock();
192 DragMessage(&message, dragBitmap, B_OP_ALPHA,
H A DUtilities.cpp622 BBitmap* dragBitmap = new BBitmap(rect, B_RGBA32, true); local
623 dragBitmap->Lock();
624 BView* view = new BView(dragBitmap->Bounds(), "", B_FOLLOW_NONE, 0);
625 dragBitmap->AddChild(view);
641 dragBitmap->Unlock();
642 DragMessage(&fMessage, dragBitmap, B_OP_ALPHA, point, fTarget.Target(0));
H A DPoseView.cpp7623 BBitmap* dragBitmap = NULL; local
7628 dragBitmap = MakeDragBitmap(dragRect, clickPoint, index, offset);
7632 dragBitmap = MakeDragBitmap(dragRect, clickPoint, index, offset);
7634 if (dragBitmap != NULL) {
7635 DragMessage(&message, dragBitmap, B_OP_ALPHA, offset);
/haiku/src/tests/servers/app/playground/
H A DObjectView.cpp330 BBitmap* dragBitmap = new BBitmap(BRect(0, 0, 40, 40), B_RGBA32, local
332 if (dragBitmap->Lock()) {
333 BView* helper = new BView(dragBitmap->Bounds(),
335 dragBitmap->AddChild(helper);
354 DragMessage(&newDragMessage, dragBitmap, B_OP_ALPHA, B_ORIGIN,
/haiku/src/apps/mediaplayer/playlist/
H A DListViews.cpp251 BBitmap* dragBitmap = new BBitmap( dragRect, B_RGB32, true ); local
252 if ( dragBitmap && dragBitmap->IsValid() ) {
253 if ( BView *v = new BView( dragBitmap->Bounds(), "helper", B_FOLLOW_NONE, B_WILL_DRAW ) ) {
254 dragBitmap->AddChild( v );
255 dragBitmap->Lock();
273 uint8 *bits = (uint8 *)dragBitmap->Bits();
274 int32 height = (int32)dragBitmap->Bounds().Height() + 1;
275 int32 width = (int32)dragBitmap->Bounds().Width() + 1;
276 int32 bpr = dragBitmap
[all...]
/haiku/src/apps/icon-o-matic/generic/gui/
H A DListViews.cpp836 BBitmap* dragBitmap = new BBitmap(dragRect, B_RGBA32, true); local
837 if (dragBitmap && dragBitmap->IsValid()) {
838 if (BView* view = new BView(dragBitmap->Bounds(), "helper",
840 dragBitmap->AddChild(view);
841 dragBitmap->Lock();
862 uint8* bits = (uint8*)dragBitmap->Bits();
863 int32 height = (int32)dragBitmap->Bounds().Height() + 1;
864 int32 width = (int32)dragBitmap->Bounds().Width() + 1;
865 int32 bpr = dragBitmap
[all...]
/haiku/src/kits/tracker/infowindow/
H A DHeaderView.cpp414 BBitmap* dragBitmap = new BBitmap(rect, B_RGBA32, true); local
415 dragBitmap->Lock();
416 BView* view = new BView(dragBitmap->Bounds(), "",
418 dragBitmap->AddChild(view);
457 dragBitmap->Unlock();
471 DragMessage(&dragMessage, dragBitmap, B_OP_ALPHA,
/haiku/src/preferences/filetypes/
H A DIconView.cpp923 BBitmap *dragBitmap = new BBitmap(fIconBitmap->Bounds(), B_RGBA32, true); local
924 dragBitmap->Lock();
926 = new BView(dragBitmap->Bounds(), B_EMPTY_STRING, B_FOLLOW_NONE, 0);
927 dragBitmap->AddChild(view);
930 view->FillRect(dragBitmap->Bounds());
937 dragBitmap->Unlock();
939 DragMessage(&message, dragBitmap, B_OP_ALPHA,
/haiku/src/kits/interface/
H A DTextView.cpp4893 BBitmap* dragBitmap = NULL; local
4897 GetDragParameters(&dragMessage, &dragBitmap, &bitmapPoint, &dragHandler);
4900 if (dragBitmap != NULL)
4901 DragMessage(&dragMessage, dragBitmap, bitmapPoint, dragHandler);

Completed in 155 milliseconds