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

/haiku-fatelf/src/preferences/locale/
H A DLanguageListView.cpp352 BBitmap* dragBitmap = new BBitmap(dragRect, B_RGB32, true); local
353 if (dragBitmap->IsValid()) {
354 BView* view = new BView(dragBitmap->Bounds(), "helper", B_FOLLOW_NONE,
356 dragBitmap->AddChild(view);
357 dragBitmap->Lock();
376 uint8* bits = (uint8*)dragBitmap->Bits();
377 int32 height = (int32)dragBitmap->Bounds().Height() + 1;
378 int32 width = (int32)dragBitmap->Bounds().Width() + 1;
379 int32 bpr = dragBitmap->BytesPerRow();
400 dragBitmap
[all...]
/haiku-fatelf/src/apps/cortex/DormantNodeView/
H A DDormantNodeListItem.cpp228 BBitmap *dragBitmap = new BBitmap(m_frame.OffsetToCopy(BPoint(0.0, 0.0)), B_RGBA32, true); local
229 dragBitmap->Lock(); {
230 BView *dragView = new BView(dragBitmap->Bounds(), "", B_FOLLOW_NONE, 0);
231 dragBitmap->AddChild(dragView);
256 dragBitmap->Unlock();
257 return dragBitmap;
/haiku-fatelf/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-fatelf/src/apps/icon-o-matic/generic/gui/
H A DListViews.cpp250 BBitmap* dragBitmap = new BBitmap(dragRect, B_RGB32, true); local
251 if (dragBitmap && dragBitmap->IsValid()) {
252 if (BView *v = new BView(dragBitmap->Bounds(), "helper",
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-fatelf/src/apps/mediaplayer/playlist/
H A DListViews.cpp246 BBitmap* dragBitmap = new BBitmap( dragRect, B_RGB32, true ); local
247 if ( dragBitmap && dragBitmap->IsValid() ) {
248 if ( BView *v = new BView( dragBitmap->Bounds(), "helper", B_FOLLOW_NONE, B_WILL_DRAW ) ) {
249 dragBitmap->AddChild( v );
250 dragBitmap->Lock();
268 uint8 *bits = (uint8 *)dragBitmap->Bits();
269 int32 height = (int32)dragBitmap->Bounds().Height() + 1;
270 int32 width = (int32)dragBitmap->Bounds().Width() + 1;
271 int32 bpr = dragBitmap
[all...]
/haiku-fatelf/src/preferences/filetypes/
H A DIconView.cpp889 BBitmap *dragBitmap = new BBitmap(fIcon->Bounds(), B_RGBA32, true); local
890 dragBitmap->Lock();
892 = new BView(dragBitmap->Bounds(), B_EMPTY_STRING, B_FOLLOW_NONE, 0);
893 dragBitmap->AddChild(view);
896 view->FillRect(dragBitmap->Bounds());
903 dragBitmap->Unlock();
905 DragMessage(&message, dragBitmap, B_OP_ALPHA,
/haiku-fatelf/src/kits/tracker/
H A DUtilities.cpp611 BBitmap* dragBitmap = new BBitmap(rect, B_RGBA32, true); local
612 dragBitmap->Lock();
613 BView* view = new BView(dragBitmap->Bounds(), "", B_FOLLOW_NONE, 0);
614 dragBitmap->AddChild(view);
630 dragBitmap->Unlock();
631 DragMessage(&fMessage, dragBitmap, B_OP_ALPHA, point, fTarget.Target(0));
H A DInfoWindow.cpp1383 BBitmap* dragBitmap = new BBitmap(rect, B_RGBA32, true); local
1384 dragBitmap->Lock();
1385 BView* view = new BView(dragBitmap->Bounds(), "",
1387 dragBitmap->AddChild(view);
1424 dragBitmap->Unlock();
1438 DragMessage(&message, dragBitmap, B_OP_ALPHA,
H A DContainerWindow.cpp427 BBitmap* dragBitmap = new BBitmap(rect, B_RGBA32, true); local
429 dragBitmap->Lock();
430 BView* view = new BView(dragBitmap->Bounds(), "", B_FOLLOW_NONE, 0);
431 dragBitmap->AddChild(view);
464 dragBitmap->Unlock();
485 DragMessage(&message, dragBitmap, B_OP_ALPHA,
H A DPoseView.cpp7305 BBitmap* dragBitmap = NULL; local
7314 dragBitmap = MakeDragBitmap(dragRect, clickPoint, index, offset);
7316 if (dragBitmap) {
7317 DragMessage(&message, dragBitmap, B_OP_ALPHA, offset);
/haiku-fatelf/src/kits/interface/
H A DTextView.cpp4851 BBitmap *dragBitmap = NULL; local
4855 GetDragParameters(&dragMessage, &dragBitmap, &bitmapPoint, &dragHandler);
4858 if (dragBitmap != NULL)
4859 DragMessage(&dragMessage, dragBitmap, bitmapPoint, dragHandler);

Completed in 180 milliseconds