Searched refs:bitmap (Results 251 - 275 of 295) sorted by relevance

<<1112

/haiku/src/apps/codycam/
H A DVideoConsumer.cpp691 VideoConsumer::LocalSave(char* filename, BBitmap* bitmap) argument
701 BBitmapStream input(bitmap);
713 input.DetachBitmap(&bitmap);
/haiku/src/apps/sudoku/
H A DSudokuView.cpp379 BBitmap* bitmap = new BBitmap(Bounds(), B_BITMAP_ACCEPTS_VIEWS,
381 BView* view = new BView(Bounds(), "bitmap", B_FOLLOW_NONE,
383 bitmap->AddChild(view);
385 if (bitmap->Lock()) {
392 bitmap->Unlock();
396 status = bitmap->Archive(&archive);
400 delete bitmap;
443 status = clip->AddData("image/bitmap", B_MESSAGE_TYPE,
446 clip->AddData("image/x-be-bitmap", B_MESSAGE_TYPE, mallocIO.Buffer(),
450 clip->AddData("image/x-vnd.Be-bitmap", B_MESSAGE_TYP
[all...]
/haiku/src/servers/app/drawing/interface/remote/
H A DRemoteHWInterface.cpp546 RemoteHWInterface::SetDragBitmap(const ServerBitmap* bitmap, argument
549 HWInterface::SetDragBitmap(bitmap, offsetFromCursor);
/haiku/src/build/libbe/interface/
H A DBitmap.cpp11 /*! BBitmap objects represent off-screen windows that contain bitmap data. */
169 bitmap data (not including any padding) given a color space and a
236 /*! \brief Returns the number of bytes per row needed to store the bitmap
1117 /*! \brief Worker function that reads bitmap data from one buffer and writes
1134 containing bitmap data (i.e. not including the padding).
1192 /*! \brief Worker function that reads bitmap data from one buffer and writes
1267 /*! \brief Helper function that reads bitmap data from one buffer and writes
1281 containing bitmap data (i.e. not including the padding).
1428 \param bounds The bitmap dimensions.
1430 \param colorSpace The bitmap'
1962 ImportBits(const BBitmap *bitmap) argument
[all...]
/haiku/src/kits/tracker/
H A DIconCache.h164 void SetIcon(BBitmap* bitmap, IconDrawMode mode, BSize size);
191 void SetIconForMode(BBitmap* bitmap, IconDrawMode mode, BSize size);
294 // instead have to place them onto the retired bitmap list and wait
379 // once the call returns, the bitmap may be deleted
488 // Utility class used when we aren't sure that we will keep a bitmap,
489 // need a bitmap or be able to construct it properly
/haiku/src/build/libbe/storage/
H A DAppFileInfo.cpp652 // could also prefer B_CMAP8 icons here if the provided bitmap
729 // other color space or bitmap size than stored in attribute
848 BBitmap bitmap(bounds, B_BITMAP_NO_SERVER_LINK, B_CMAP8);
849 error = bitmap.InitCheck();
851 error = bitmap.ImportBits(icon);
854 bitmap.Bits(), attrSize, true);
/haiku/src/apps/showimage/
H A DFilter.cpp217 Filter::IsBitmapValid(BBitmap* bitmap) const
219 return bitmap != NULL && bitmap->InitCheck() == B_OK && bitmap->IsValid();
H A DShowImageWindow.cpp442 // to from the Be bitmap image format
539 BBitmap* bitmap = fImageView->Bitmap(); local
541 if (bitmap == NULL || !screen.IsValid())
545 BRect r(bitmap->Bounds());
1511 BBitmap* bitmap = fImageView->Bitmap(); local
1512 float imageWidth = bitmap->Bounds().Width() + 1.0;
1513 float imageHeight = bitmap->Bounds().Height() + 1.0;
1546 BRect bounds(bitmap->Bounds());
/haiku/src/kits/storage/
H A DAppFileInfo.cpp650 // could also prefer B_CMAP8 icons here if the provided bitmap
727 // other color space or bitmap size than stored in attribute
846 BBitmap bitmap(bounds, B_BITMAP_NO_SERVER_LINK, B_CMAP8);
847 error = bitmap.InitCheck();
849 error = bitmap.ImportBits(icon);
852 bitmap.Bits(), attrSize, true);
/haiku/src/servers/app/drawing/
H A DHWInterface.h144 virtual void SetDragBitmap(const ServerBitmap* bitmap,
/haiku/src/tests/kits/interface/picture/
H A DSVGViewView.cpp1024 BBitmap *bitmap = BTranslationUtils::GetBitmap(href); local
1026 if (bitmap) {
1027 DrawBitmap(bitmap, BRect(topLeft, bottomRight));
1028 delete bitmap;
/haiku/src/servers/app/
H A DView.cpp493 View::SetViewBitmap(ServerBitmap* bitmap, IntRect sourceRect, argument
499 if (bitmap != NULL) {
501 Overlay* newOverlay = bitmap->Overlay();
509 fViewBitmap.SetTo(bitmap, false);
733 // view bitmap
1077 // draw view bitmap
H A DView.h149 void SetViewBitmap(ServerBitmap* bitmap,
H A DEventDispatcher.cpp604 ServerBitmap* bitmap, const BPoint& offsetFromCursor)
615 fHWInterface->SetDragBitmap(bitmap, offsetFromCursor);
603 SetDragMessage(BMessage& message, ServerBitmap* bitmap, const BPoint& offsetFromCursor) argument
H A DServerPicture.cpp574 UtilityBitmap bitmap(BRect(0, 0, width - 1, height - 1),
577 if (!bitmap.IsValid())
580 memcpy(bitmap.Bits(), data, std::min(height * bytesPerRow, length));
584 canvas->GetDrawingEngine()->DrawBitmap(&bitmap, src, dest, options);
/haiku/src/apps/powerstatus/
H A DPowerStatusView.cpp597 BBitmap* bitmap = NULL; local
608 bitmap = BTranslationUtils::GetBitmap(&memoryIO);
628 notification.SetIcon(bitmap);
630 delete bitmap;
/haiku/src/preferences/keymap/
H A DKeyboardLayoutView.cpp465 BBitmap* bitmap = new BBitmap(rect, B_RGBA32, true); local
466 bitmap->Lock();
469 bitmap->AddChild(view);
480 bitmap->Unlock();
494 DragMessage(&drag, bitmap, B_OP_ALPHA, offset);
/haiku/src/apps/haikudepot/ui/
H A DPackageInfoView.cpp362 BitmapRef bitmap; local
364 package->Name(), BITMAP_SIZE_64, bitmap);
367 fIconView->SetBitmap(bitmap, BITMAP_SIZE_32);
1192 void SetScreenshotThumbnail(const BitmapRef& bitmap) argument
1194 fAboutView->SetScreenshotThumbnail(bitmap);
/haiku/src/apps/cortex/DiagramView/
H A DDiagramView.cpp649 DiagramView::setBackgroundBitmap(BBitmap* bitmap) argument
655 m_backgroundBitmap = new BBitmap(bitmap);
/haiku/src/apps/mandelbrot/
H A DMandelbrot.cpp166 msg.AddPointer("bitmap", fDisplayBitmap);
404 // Write the screenshot bitmap to the file
414 BBitmap* bitmap; local
415 stream.DetachBitmap(&bitmap);
416 // The stream takes over ownership of the bitmap
/haiku/src/kits/interface/
H A DAlert.cpp229 BAlert::SetIcon(BBitmap* bitmap) argument
231 fIconView->SetBitmap(bitmap);
556 // Allocate the icon bitmap
560 FTRACE((stderr, "BAlert::_CreateTypeIcon() - No memory for bitmap\n"));
H A DInterfaceDefs.cpp1182 get_mouse_bitmap(BBitmap** bitmap, BPoint* hotspot) argument
1184 if (bitmap == NULL && hotspot == NULL)
1239 if (status == B_OK && bitmap != NULL)
1240 *bitmap = cursorBitmap;
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi4965/dev/iwn/
H A Dif_iwnvar.h145 uint64_t bitmap; member in struct:iwn_node::__anon17
/haiku/headers/private/graphics/common/
H A Dedid_raw.h487 uint8 bitmap[FLEXIBLE_ARRAY_LENGTH]; member in struct:_PACKED::_PACKED::_PACKED
/haiku/headers/os/interface/
H A DInterfaceDefs.h393 // disabled version of the specified bitmap
399 // transfer bitmap ownership to the view
405 // crop the bitmap to the not fully transparent area; may change the
475 status_t get_mouse_bitmap(BBitmap** bitmap, BPoint* hotspot);

Completed in 210 milliseconds

<<1112