Searched refs:bitmap (Results 201 - 225 of 295) sorted by relevance

1234567891011>>

/haiku/src/servers/app/
H A DServerApp.cpp391 /*! \brief Acquires a reference of the desired bitmap, if available.
392 \param token ID token of the bitmap to find
393 \return The bitmap having that ID or NULL if not found
403 ServerBitmap* bitmap = _FindBitmap(token); local
404 if (bitmap == NULL)
407 bitmap->AcquireReference();
409 return bitmap;
580 ServerBitmap* bitmap = iterator->second; local
583 bitmap->Token(), bitmap
748 BReference<ServerBitmap> bitmap; local
802 ServerBitmap* bitmap = _FindBitmap(token); local
859 BReference<ServerBitmap> bitmap; local
3734 ServerBitmap* bitmap = GetBitmap(bitmapToken); local
3788 _AddBitmap(ServerBitmap* bitmap) argument
3804 _DeleteBitmap(ServerBitmap* bitmap) argument
[all...]
/haiku/src/kits/storage/
H A DNodeInfo.cpp210 BBitmap bitmap(bounds, B_BITMAP_NO_SERVER_LINK, B_CMAP8);
211 result = bitmap.InitCheck();
213 result = bitmap.ImportBits(icon);
217 bitmap.Bits(), attrSize);
599 BBitmap* bitmap, icon_size iconSize)
602 return BNodeInfo::GetTrackerIcon(ref, bitmap, iconSize);
597 GetTrackerIcon__9BNodeInfoP9entry_refP7BBitmap9icon_size( BNodeInfo* nodeInfo, entry_ref* ref, BBitmap* bitmap, icon_size iconSize) argument
/haiku/src/apps/mediaplayer/playlist/
H A DFilePlaylistItem.cpp279 FilePlaylistItem::GetIcon(BBitmap* bitmap, icon_size iconSize) const argument
283 return info.GetTrackerIcon(bitmap, iconSize);
356 BBitmap* bitmap = BTranslationUtils::GetBitmap(&fImageRefs[i]); local
357 if (bitmap == NULL)
359 if (supplier->AddBitmap(bitmap) != B_OK)
360 delete bitmap;
H A DFilePlaylistItem.h54 virtual status_t GetIcon(BBitmap* bitmap,
H A DUrlPlaylistItem.cpp139 UrlPlaylistItem::GetIcon(BBitmap* bitmap, icon_size iconSize) const argument
H A DPlaylistItem.h99 virtual status_t GetIcon(BBitmap* bitmap,
/haiku/src/kits/app/
H A DNotification.cpp122 BBitmap bitmap(&icon);
123 ret = bitmap.InitCheck();
125 ret = SetIcon(&bitmap);
/haiku/headers/build/os/interface/
H A DBitmap.h9 // contain bitmap data.
71 status_t ImportBits(const BBitmap *bitmap);
/haiku/src/apps/cortex/DiagramView/
H A DDiagramView.h212 // set the background bitmap; does not refresh the display
214 BBitmap *bitmap);
276 // true if a bitmap is used for the background; false
283 // the background bitmap of the view
/haiku/src/preferences/backgrounds/
H A DBackgroundImage.cpp265 BBitmap* bitmap local
268 if (!bitmap)
278 BRect bitmapBounds(bitmap->Bounds());
289 // figure out the display mode and the destination bounds for the bitmap
336 // switch to the bitmap and force a redraw
337 view->SetViewBitmap(bitmap, bitmapBounds, destinationBitmapBounds,
397 // do a simple lookup for the most likely candidate bitmap -
/haiku/src/apps/patchbay/
H A DPatchView.cpp154 const BBitmap* bitmap = (i->Icon()) ? i->Icon() : fUnknownDeviceIcon; local
155 DrawBitmapAsync(bitmap, RowIconFrameAt(index++).LeftTop());
162 const BBitmap* bitmap = (i->Icon()) ? i->Icon() : fUnknownDeviceIcon; local
163 DrawBitmapAsync(bitmap, ColumnIconFrameAt(index2++).LeftTop());
/haiku/src/preferences/mail/
H A DFilterConfigView.cpp53 BBitmap *bitmap = new BBitmap(frame.OffsetToCopy(B_ORIGIN), B_RGBA32, local
55 BView *view = new BView(bitmap->Bounds(), NULL, 0, 0);
56 bitmap->AddChild(view);
79 DragMessage(&drag, bitmap, B_OP_ALPHA, point - frame.LeftTop(), this);
/haiku/headers/os/interface/
H A DScreen.h50 status_t ReadBitmap(BBitmap* bitmap,
H A DAlert.h61 void SetIcon(BBitmap* bitmap);
/haiku/src/add-ons/decorators/BeDecorator/
H A DBeDecorator.h67 void _DrawButtonBitmap(ServerBitmap* bitmap,
/haiku/src/kits/interface/
H A DControl.cpp535 BControl::SetIcon(const BBitmap* bitmap, uint32 flags) argument
537 status_t error = BIcon::UpdateIcon(bitmap, flags, fIcon);
549 BControl::SetIconBitmap(const BBitmap* bitmap, uint32 which, uint32 flags) argument
551 status_t error = BIcon::SetIconBitmap(bitmap, which, flags, fIcon);
H A DView.cpp1452 // the chance *NOT* to need to drag a whole bitmap around but just a frame.
1454 // create a drag bitmap for the rect
1455 BBitmap* bitmap = new(std::nothrow) BBitmap(dragRect, B_RGBA32); local
1456 if (bitmap == NULL)
1459 uint32* bits = (uint32*)bitmap->Bits();
1460 uint32 bytesPerRow = bitmap->BytesPerRow();
1483 DragMessage(message, bitmap, B_OP_BLEND, offset, replyTo);
1503 // TODO: workaround for drags without a bitmap - should not be necessary if
1548 // before we can delete the bitmap
3081 BView::DrawBitmapAsync(const BBitmap* bitmap, BRec argument
3104 DrawBitmapAsync(const BBitmap* bitmap, BRect bitmapRect, BRect viewRect) argument
3111 DrawBitmapAsync(const BBitmap* bitmap, BRect viewRect) argument
3121 DrawBitmapAsync(const BBitmap* bitmap, BPoint where) argument
3142 DrawBitmapAsync(const BBitmap* bitmap) argument
3149 DrawBitmap(const BBitmap* bitmap, BRect bitmapRect, BRect viewRect, uint32 options) argument
3160 DrawBitmap(const BBitmap* bitmap, BRect bitmapRect, BRect viewRect) argument
3170 DrawBitmap(const BBitmap* bitmap, BRect viewRect) argument
3180 DrawBitmap(const BBitmap* bitmap, BPoint where) argument
3190 DrawBitmap(const BBitmap* bitmap) argument
3197 DrawTiledBitmapAsync(const BBitmap* bitmap, BRect viewRect, BPoint phase) argument
3219 DrawTiledBitmap(const BBitmap* bitmap, BRect viewRect, BPoint phase) argument
4292 SetViewBitmap(const BBitmap* bitmap, BRect srcRect, BRect dstRect, uint32 followFlags, uint32 options) argument
4300 SetViewBitmap(const BBitmap* bitmap, uint32 followFlags, uint32 options) argument
6529 _SetViewBitmap(const BBitmap* bitmap, BRect srcRect, BRect dstRect, uint32 followFlags, uint32 options) argument
[all...]
H A DScreen.cpp160 BScreen::ReadBitmap(BBitmap* bitmap, bool drawCursor, BRect* bounds) argument
163 return fScreen->ReadBitmap(bitmap, drawCursor, bounds);
/haiku/headers/private/virtio/
H A Dvirtio_defs.h177 uint8 bitmap[128]; member in union:VirtioInputConfig::__anon12
/haiku/src/build/libbe/storage/
H A DNodeInfo.cpp215 - \c B_BAD_VALUE: \c NULL \a icon, unsupported icon size \a k or bitmap
311 - \c B_BAD_VALUE: Unknown icon size \a k or bitmap dimensions (\a icon)
354 BBitmap bitmap(bounds, B_BITMAP_NO_SERVER_LINK, B_CMAP8);
355 error = bitmap.InitCheck();
357 error = bitmap.ImportBits(icon);
360 bitmap.Bits(), attrSize);
592 - \c B_BAD_VALUE: \c NULL \a icon, unsupported icon size \a iconSize or bitmap
717 bitmap dimensions (\a icon) and icon size (\a iconSize) do not match.
/haiku/src/kits/tracker/
H A DIconMenuItem.cpp50 DimmedIconBlitter(BView* view, BPoint where, BBitmap* bitmap, void*) argument
52 if (bitmap->ColorSpace() == B_RGBA32) {
57 view->DrawBitmap(bitmap, where);
61 view->DrawBitmap(bitmap, where);
/haiku/src/preferences/filetypes/
H A DMimeTypeListView.cpp95 BBitmap bitmap(iconRect, B_RGBA32);
97 status_t status = icon_for_type(mimeType, bitmap, B_MINI_ICON);
102 status = icon_for_type(genericType, bitmap, B_MINI_ICON);
110 owner->DrawBitmap(&bitmap, point);
/haiku/src/add-ons/translators/shared/
H A DBaseTranslator.cpp313 strcpy(outInfo->MIME, "image/x-be-bitmap");
418 TranslatorBitmap bitmap; local
419 result = identify_bits_header(inSource, outInfo, &bitmap);
421 result = DerivedCanHandleImageSize(bitmap.bounds.Width() + 1.0,
422 bitmap.bounds.Height() + 1.0);
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DNFS4Defs.h145 static inline bool sIsAttrSet(Attribute attr, const uint32* bitmap, argument
151 return (bitmap[attr / 32] & 1 << attr % 32) != 0;
/haiku/src/servers/app/drawing/interface/remote/
H A DRemoteMessage.h155 void AddBitmap(const ServerBitmap& bitmap,
163 void AddBitmap(const BBitmap& bitmap);

Completed in 178 milliseconds

1234567891011>>