Searched refs:fBitmap (Results 26 - 50 of 134) sorted by last modified time

123456

/haiku/src/apps/icon-o-matic/
H A DCanvasView.cpp31 fBitmap(new BBitmap(BRect(0, 0, 63, 63), 0, B_RGB32)),
34 fRenderer(new IconRenderer(fBitmap)),
35 fDirtyIconArea(fBitmap->Bounds()),
56 delete fBitmap;
426 if (fBitmap == NULL)
428 r = fBitmap->Bounds();
444 view->DrawBitmap(fBitmap, fBitmap->Bounds(), canvas);
/haiku/src/apps/deskbar/
H A DWindowMenuItem.h80 const BBitmap* fBitmap; member in class:TWindowMenuItem
/haiku/src/apps/debugger/user_interface/gui/util/
H A DAlertWithCheckbox.cpp41 fBitmap(IconSize(), B_RGBA32),
45 BIconUtils::GetSystemIcon("dialog-information", &fBitmap);
46 BStripeView *stripeView = new BStripeView(fBitmap);
H A DAlertWithCheckbox.h29 BBitmap fBitmap; member in class:AlertWithCheckbox
/haiku/src/kits/translation/
H A DBitmapStream.cpp26 fBitmap = bitmap;
32 fBitmap = NULL;
37 if (fBitmap != NULL && fBitmap->InitCheck() == B_OK) {
39 fHeader.bounds = fBitmap->Bounds();
40 fHeader.rowBytes = fBitmap->BytesPerRow();
41 fHeader.colors = fBitmap->ColorSpace();
51 fBitmap = NULL;
58 delete fBitmap;
68 if (fBitmap
[all...]
/haiku/src/servers/debug/
H A DDebugWindow.cpp33 fBitmap(IconSize(), B_RGBA32),
48 BIconUtils::GetVectorIcon(iconData, size, &fBitmap);
49 BStripeView *stripeView = new BStripeView(fBitmap);
/haiku/src/kits/interface/
H A DBitmap.cpp64 fBitmap(bitmap)
72 fBitmap->_ReconnectToAppServer();
/haiku/src/apps/processcontroller/
H A DAutoIcon.cpp19 delete fBitmap;
26 if (fBitmap != NULL)
27 return fBitmap;
30 fBitmap = new BBitmap(BRect(BPoint(0, 0),
35 if (BNodeInfo::GetTrackerIcon(&ref, fBitmap, (icon_size)-1) != B_OK) {
37 genericAppType.GetIcon(fBitmap, (icon_size)(fBitmap->Bounds().IntegerWidth() + 1));
40 fBitmap = new BBitmap(BRect(BPoint(0, 0),
43 fBitmap->SetBits(fbits, 256, 0, B_CMAP8);
45 return fBitmap;
[all...]
/haiku/src/apps/debugger/user_interface/gui/teams_window/
H A DTeamsListView.cpp46 fBitmap(bitmap)
53 delete fBitmap;
60 delete fBitmap;
61 fBitmap = bitmap;
/haiku/src/kits/tracker/
H A DIconCache.h500 BBitmap* fBitmap; member in class:BPrivate::LazyBitmapAllocator
/haiku/src/servers/app/drawing/interface/virtual/
H A DViewHWInterface.cpp144 const BBitmap* fBitmap; member in class:CardView
182 fBitmap(NULL)
212 if (fBitmap != NULL)
213 DrawBitmapAsync(fBitmap, updateRect, updateRect);
259 if (bitmap != fBitmap) {
260 fBitmap = bitmap;
/haiku/headers/private/kernel/
H A Dsmp.h63 uint32 fBitmap[kArraySize]; member in class:CPUSet
107 memset(fBitmap, 0, sizeof(fBitmap));
114 memset(fBitmap, 0, sizeof(fBitmap));
121 memset(fBitmap, ~uint8(0), sizeof(fBitmap));
128 int32* element = (int32*)&fBitmap[cpu % kArraySize];
136 int32* element = (int32*)&fBitmap[cpu % kArraySize];
144 int32* element = (int32*)&fBitmap[cp
[all...]
/haiku/src/servers/app/drawing/
H A DBitmapBuffer.h26 { return fBitmap; }
29 ServerBitmap* fBitmap; member in class:BitmapBuffer
H A DBBitmapBuffer.h28 { return fBitmap.Get(); }
32 fBitmap; member in class:BBitmapBuffer
H A DBitmapDrawingEngine.cpp11 fBitmap(NULL)
44 if (fBitmap != NULL && newWidth > 0 && newHeight > 0
45 && fBitmap->Bounds().IntegerWidth() >= newWidth
46 && fBitmap->Bounds().IntegerHeight() >= newHeight) {
61 fBitmap.SetTo(new(std::nothrow) UtilityBitmap(BRect(0, 0, newWidth - 1,
63 if (!fBitmap.IsSet())
66 fHWInterface.SetTo(new(std::nothrow) BitmapHWInterface(fBitmap));
75 fClipping.Set(fBitmap->Bounds());
94 if (result->ImportBits(fBitmap->Bits(), fBitmap
[all...]
H A DBBitmapBuffer.cpp9 : fBitmap(bitmap)
23 if (fBitmap.IsSet())
24 ret = fBitmap->InitCheck();
33 return fBitmap->ColorSpace();
42 return fBitmap->Bits();
51 return fBitmap->BytesPerRow();
60 return fBitmap->Bounds().IntegerWidth() + 1;
69 return fBitmap->Bounds().IntegerHeight() + 1;
H A DBitmapDrawingEngine.h33 fBitmap; member in class:BitmapDrawingEngine
/haiku/src/kits/bluetooth/UI/
H A DBluetoothIconView.cpp15 BBitmap* BluetoothIconView::fBitmap = NULL; member in class:Bluetooth::BluetoothIconView
23 fBitmap = new BBitmap(BRect(0, 0, 64, 64), 0, B_RGBA32);
31 BIconUtils::GetVectorIcon(tempIcon, tempSize, fBitmap);
49 delete fBitmap;
56 this->DrawBitmap(fBitmap);
/haiku/headers/private/bluetooth/
H A DBluetoothIconView.h27 static BBitmap* fBitmap; member in class:Bluetooth::BluetoothIconView
/haiku/src/servers/app/
H A DOffscreenWindow.cpp31 fBitmap(bitmap),
32 fHWInterface(new (nothrow) BitmapHWInterface(fBitmap))
H A DOffscreenWindow.h30 ServerBitmap* fBitmap; member in class:OffscreenWindow
H A DOffscreenServerWindow.cpp20 fBitmap(bitmap, true)
45 return new OffscreenWindow(fBitmap, name, this);
H A DOffscreenServerWindow.h32 BReference<ServerBitmap> fBitmap; member in class:OffscreenServerWindow
/haiku/src/apps/haikudepot/ui_generic/
H A DBitmapView.cpp20 fBitmap(NULL),
37 if (fBitmap == NULL)
40 BRect bitmapBounds = fBitmap->Bounds();
85 DrawBitmap(fBitmap, bitmapBounds, bounds, B_FILTER_BITMAP_BILINEAR);
94 if (fBitmap != NULL) {
95 BRect bounds = fBitmap->Bounds();
130 fBitmap = bitmap->Bitmap(bitmapSize);
146 fBitmap = NULL;
H A DSharedBitmap.h52 BBitmap* fBitmap[4]; member in class:SharedBitmap

Completed in 338 milliseconds

123456