Searched refs:bitmap (Results 151 - 175 of 295) sorted by relevance

1234567891011>>

/haiku/headers/os/translation/
H A DBitmapStream.h20 BBitmapStream(BBitmap* bitmap = NULL);
/haiku/src/add-ons/print/drivers/pcl6/
H A DPCL6.h29 virtual bool NextBand(BBitmap* bitmap, BPoint* offset);
/haiku/src/apps/mediaplayer/supplier/
H A DImageTrackVideoSupplier.h19 ImageTrackVideoSupplier(BBitmap* bitmap,
H A DMediaFileTrackSupplier.h49 status_t AddBitmap(BBitmap* bitmap);
/haiku/src/apps/people/
H A DPictureView.h52 void _SetPicture(BBitmap* bitmap);
/haiku/src/apps/resedit/
H A DResFields.h40 // bitmap passed to it. This is good because the bitmap given to it is
45 BitmapPreviewField(BBitmap *bitmap);
/haiku/src/add-ons/translators/gif/
H A DSavePalette.h44 SavePalette(BBitmap* bitmap,
/haiku/src/kits/tracker/
H A DBackgroundImage.h65 // This class knows everything about which bitmap to use for a given
81 BackgroundImageInfo(uint32 workspace, BBitmap* bitmap, Mode mode,
/haiku/src/add-ons/print/drivers/gutenprint/
H A DGPDriver.cpp230 GPDriver::NextBand(BBitmap* bitmap, BPoint* offset) argument
234 BRect bounds = bitmap->Bounds();
258 if (get_valid_rect(bitmap, &rc)) {
273 status = fBinding.AddBitmapToPage(bitmap, imageRect, BPoint(x, y));
283 DBGMSG(("band bitmap is empty.\n"));
H A DGPBinding.h51 status_t AddBitmapToPage(BBitmap* bitmap, BRect validRect, BPoint where);
/haiku/src/libs/glut/
H A Dglut_bitmap.c53 ch->advance, 0, ch->bitmap);
/haiku/src/apps/mediaplayer/playlist/
H A DUrlPlaylistItem.h47 virtual status_t GetIcon(BBitmap* bitmap,
/haiku/src/apps/soundrecorder/
H A DScopeView.cpp316 BBitmap* bitmap = new BBitmap( local
318 if (BIconUtils::GetVectorIcon(data, size, bitmap) < B_OK) {
320 delete bitmap;
324 DragMessage(&drag, bitmap, B_OP_ALPHA, BPoint(0,0));
/haiku/headers/os/app/
H A DCursor.h53 BCursor(const BBitmap* bitmap,
/haiku/src/servers/app/drawing/
H A DBitmapHWInterface.h24 BitmapHWInterface(ServerBitmap* bitmap);
/haiku/src/apps/haikudepot/ui_generic/
H A DSharedBitmap.h23 SharedBitmap(BBitmap* bitmap);
/haiku/src/servers/app/decorator/
H A DDefaultDecorator.h55 void _DrawButtonBitmap(ServerBitmap* bitmap,
/haiku/src/apps/deskcalc/
H A DExpressionTextView.h34 BBitmap** bitmap, BPoint* point,
/haiku/src/apps/launchbox/
H A DLaunchButton.cpp223 // create drag bitmap and message
224 if (BBitmap* bitmap = Bitmap()) {
225 if (bitmap->ColorSpace() == B_RGB32) {
227 uint8* bits = (uint8*)bitmap->Bits();
228 uint32 width = bitmap->Bounds().IntegerWidth() + 1;
229 uint32 height = bitmap->Bounds().IntegerHeight() + 1;
230 uint32 bpr = bitmap->BytesPerRow();
244 // DragMessage takes ownership of the bitmap.
245 DragMessage(&message, bitmap, B_OP_ALPHA, fDragStart);
421 // the BNodeInfo to ignore it and just use the bitmap bound
[all...]
/haiku/src/add-ons/decorators/BeDecorator/
H A DBeDecorator.cpp163 // glint bitmap is used by close and zoom buttons
727 ServerBitmap* bitmap = tab->closeBitmaps[index]; local
728 if (bitmap == NULL) {
729 bitmap = _GetBitmapForButton(tab, COMPONENT_CLOSE_BUTTON,
731 tab->closeBitmaps[index] = bitmap;
734 _DrawButtonBitmap(bitmap, direct, rect);
758 ServerBitmap* bitmap = tab->zoomBitmaps[index]; local
759 if (bitmap == NULL) {
760 bitmap = _GetBitmapForButton(tab, COMPONENT_ZOOM_BUTTON,
762 tab->zoomBitmaps[index] = bitmap;
867 _DrawButtonBitmap(ServerBitmap* bitmap, bool direct, BRect rect) argument
898 UtilityBitmap* bitmap; member in struct:decorator_bitmap
1331 UtilityBitmap* bitmap = sBitmapDrawingEngine->ExportToBitmap(width, height, local
1359 UtilityBitmap* bitmap = new(std::nothrow) UtilityBitmap(bounds, local
[all...]
/haiku/src/apps/haikudepot/ui/
H A DFeaturedPackagesView.cpp430 const BBitmap* bitmap = icon->Bitmap(BITMAP_SIZE_64); local
432 if (bitmap != NULL && bitmap->IsValid()) {
434 DrawBitmap(bitmap, bitmap->Bounds(), targetRect,
465 const BBitmap* bitmap = sInstalledIcon->Bitmap( local
467 if (bitmap != NULL && bitmap->IsValid()) {
473 DrawBitmap(bitmap, bitmap
[all...]
/haiku/src/kits/interface/
H A DColumnTypes.cpp595 BBitmapField::BBitmapField(BBitmap* bitmap) argument
597 fBitmap(bitmap)
610 BBitmapField::SetBitmap(BBitmap* bitmap) argument
612 fBitmap = bitmap;
631 const BBitmap* bitmap = bitmapField->Bitmap(); local
633 if (bitmap != NULL) {
635 BRect r = bitmap->Bounds();
652 // setup drawing mode according to bitmap color space,
655 if (bitmap->ColorSpace() == B_RGBA32
656 || bitmap
[all...]
H A DPrivateScreen.cpp368 BBitmap* bitmap = new (std::nothrow) BBitmap(rect, ColorSpace()); local
369 if (bitmap == NULL)
372 status_t status = bitmap->InitCheck();
374 status = ReadBitmap(bitmap, drawCursor, &rect);
376 delete bitmap;
380 *_bitmap = bitmap;
386 BPrivateScreen::ReadBitmap(BBitmap* bitmap, bool drawCursor, BRect* bounds) argument
388 if (bitmap == NULL)
399 link.Attach<int32>(bitmap->_ServerToken());
/haiku/src/add-ons/print/drivers/postscript/
H A DPS.cpp206 PSDriver::NextBand(BBitmap* bitmap, BPoint* offset) argument
211 BRect bounds = bitmap->Bounds();
236 if (get_valid_rect(bitmap, &rc)) {
251 int delta = bitmap->BytesPerRow();
261 uchar* ptr = static_cast<uchar*>(bitmap->Bits())
323 DBGMSG(("band bitmap is clean.\n"));
/haiku/src/servers/app/drawing/Painter/bitmap_painter/
H A DDrawBitmapBilinear.h30 uint16 index; // index into source bitmap row/column
46 agg::rendering_buffer* bitmap, const FilterData& filterData)
48 fSource = bitmap;
49 fSourceBytesPerRow = bitmap->stride();
345 // bitmap. If the scale is low and integer, it will
485 agg::rendering_buffer& bitmap, BPoint offset,
491 uint32 srcWidth = bitmap.width();
492 uint32 srcHeight = bitmap.height();
535 // Extract the cropping information for the source bitmap,
536 // If only a part of the source bitmap i
45 Draw(PainterAggInterface& aggInterface, const BRect& destinationRect, agg::rendering_buffer* bitmap, const FilterData& filterData) argument
484 Draw(const Painter* painter, PainterAggInterface& aggInterface, agg::rendering_buffer& bitmap, BPoint offset, double scaleX, double scaleY, BRect destinationRect) argument
[all...]

Completed in 126 milliseconds

1234567891011>>