Searched refs:fOffscreen (Results 1 – 14 of 14) sorted by relevance
/haiku/src/apps/clock/ |
H A D | cl_view.cpp | 169 fOffscreen(NULL), in TOnscreenView() 187 fOffscreen = new BBitmap(rect, B_CMAP8, true); in InitObject() 188 if (fOffscreen != NULL && fOffscreen->Lock()) { in InitObject() 189 fOffscreen->AddChild(fOffscreenView); in InitObject() 190 fOffscreen->Unlock(); in InitObject() 199 delete fOffscreen; in ~TOnscreenView() 205 fOffscreen(NULL), in TOnscreenView() 255 ASSERT(fOffscreen); in Pulse() 314 ASSERT(fOffscreen); in Draw() 317 if (fOffscreen->Lock()) { in Draw() [all …]
|
H A D | cl_view.h | 71 BBitmap *fOffscreen;
|
/haiku/src/tests/kits/game/chart/ |
H A D | ChartView.cpp | 33 if ((window->fOffscreen != 0) && (window->fCurrentSettings.display == DISPLAY_BITMAP)) in Draw() 34 DrawBitmap(window->fOffscreen, rect, rect); in Draw()
|
H A D | ChartWindow.cpp | 394 fOffscreen = NULL; in ChartWindow() 942 delete fOffscreen; in ~ChartWindow() 2198 w->fChartView->DrawBitmap(w->fOffscreen); in Animation() 2862 if (fOffscreen == NULL) in CheckBitmap() 2868 if (fOffscreen) in CheckBitmap() 2869 delete fOffscreen; in CheckBitmap() 2877 fOffscreen = new BBitmap(BRect(0, 0, fMaxWidth-1, fMaxHeight-1), depth); in CheckBitmap() 2878 if (!fOffscreen->IsValid()) { in CheckBitmap() 2881 delete fOffscreen; in CheckBitmap() 2882 fOffscreen = NULL; in CheckBitmap() [all …]
|
H A D | ChartWindow.h | 238 BBitmap *fOffscreen; variable
|
/haiku/src/apps/activitymonitor/ |
H A D | ActivityView.cpp | 601 delete fOffscreen; in ~ActivityView() 612 fOffscreen = NULL; in _Init() 942 if (fOffscreen != NULL && frame == fOffscreen->Bounds()) in _UpdateOffscreenBitmap() 945 delete fOffscreen; in _UpdateOffscreenBitmap() 949 fOffscreen = new(std::nothrow) BBitmap(frame, B_BITMAP_ACCEPTS_VIEWS, in _UpdateOffscreenBitmap() 951 if (fOffscreen == NULL || fOffscreen->InitCheck() != B_OK) { in _UpdateOffscreenBitmap() 952 delete fOffscreen; in _UpdateOffscreenBitmap() 953 fOffscreen = NULL; in _UpdateOffscreenBitmap() 960 fOffscreen->AddChild(view); in _UpdateOffscreenBitmap() 967 if (fOffscreen == NULL) in _OffscreenView() [all …]
|
H A D | ActivityView.h | 127 BBitmap* fOffscreen; variable
|
/haiku/src/apps/remotedesktop/ |
H A D | RemoteView.cpp | 69 fOffscreen(NULL), in RemoteView() 133 fOffscreen = new(std::nothrow) BView(bounds, "offscreen remote view", in RemoteView() 135 if (fOffscreen == NULL) { in RemoteView() 141 fOffscreenBitmap->AddChild(fOffscreen); in RemoteView() 142 fOffscreen->SetDrawingMode(B_OP_COPY); in RemoteView() 199 fOffscreen->Sync(); in Draw() 578 fOffscreen->LockLooper(); in _DrawThread() 579 fOffscreen->SetHighColor(color); in _DrawThread() 580 fOffscreen->FillRegion(®ion); in _DrawThread() 581 fOffscreen->UnlockLooper(); in _DrawThread() [all …]
|
H A D | RemoteView.h | 77 BView * fOffscreen; variable
|
/haiku/src/kits/interface/ |
H A D | TextView.cpp | 2534 if (colors != fColorSpace && fOffscreen) { in SetColorSpace() 2576 if (fOffscreen) in MakeResizable() 3242 fOffscreen = NULL; in _InitObject() 4571 if (fOffscreen == NULL) in _DrawLines() 4574 fOffscreen->Lock(); in _DrawLines() 4575 view = fOffscreen->ChildAt(0); in _DrawLines() 4635 if (fOffscreen != NULL) { in _DrawLines() 4640 fOffscreen->Unlock(); in _DrawLines() 5143 if (fOffscreen != NULL) in _NewOffscreen() 5148 fOffscreen = new BBitmap(bitmapRect, fColorSpace, true, false); in _NewOffscreen() [all …]
|
H A D | Window.cpp | 2661 return fOffscreen; in IsOffscreenWindow() 2814 fOffscreen = false; in _InitData() 2850 fOffscreen = true; in _InitData()
|
/haiku/src/kits/app/ |
H A D | Application.cpp | 1110 if (window == NULL || (window != NULL && window->fOffscreen)) in DispatchMessage() 1642 if (window != NULL && !window->fOffscreen && (includeMenus in _CountWindows() 1662 if (window == NULL || (window != NULL && window->fOffscreen) in _WindowAt()
|
/haiku/headers/os/interface/ |
H A D | Window.h | 387 bool fOffscreen; variable
|
H A D | TextView.h | 453 BBitmap* fOffscreen; variable
|