Searched refs:ServerBitmap (Results 1 - 25 of 48) sorted by last modified time

12

/haiku/src/servers/app/
H A DServerApp.cpp62 #include "ServerBitmap.h"
395 ServerBitmap*
403 ServerBitmap* bitmap = _FindBitmap(token);
580 ServerBitmap* bitmap = iterator->second;
748 BReference<ServerBitmap> bitmap;
802 ServerBitmap* bitmap = _FindBitmap(token);
823 BReference<ServerBitmap> bitmap(GetBitmap(token), true);
859 BReference<ServerBitmap> bitmap;
3432 BReference<ServerBitmap> bitmap(GetBitmap(token), true);
3734 ServerBitmap* bitma
[all...]
H A DBitmapManager.cpp11 /*! Whenever a ServerBitmap associated with a client-side BBitmap needs to be
23 #include "ServerBitmap.h"
72 delete (ServerBitmap*)fBitmapList.ItemAt(i);
76 /*! \brief Allocates a new ServerBitmap.
83 \return A new ServerBitmap or NULL if unable to allocate one.
85 ServerBitmap*
108 ServerBitmap* bitmap = new(std::nothrow) ServerBitmap(bounds, space, flags,
193 ServerBitmap*
200 BReference<ServerBitmap> bitma
[all...]
H A DView.h40 class ServerBitmap;
147 ServerBitmap* ViewBitmap() const
149 void SetViewBitmap(ServerBitmap* bitmap,
248 BReference<ServerBitmap>
H A DView.cpp27 #include "ServerBitmap.h"
493 View::SetViewBitmap(ServerBitmap* bitmap, IntRect sourceRect,
H A DServerWindow.cpp73 #include "ServerBitmap.h"
2041 BReference<ServerBitmap> bitmap(fServerApp->GetBitmap(bitmapToken), true);
2319 BReference<ServerBitmap> bitmap(
2639 BReference<ServerBitmap> bitmap(fServerApp->GetBitmap(info.bitmapToken), true);
3907 BReference<ServerBitmap> bitmap(App()->GetBitmap(info.bitmapToken), true);
H A DServerApp.h35 class ServerBitmap;
85 ServerBitmap* GetBitmap(int32 token) const;
113 bool _AddBitmap(ServerBitmap* bitmap);
114 void _DeleteBitmap(ServerBitmap* bitmap);
115 ServerBitmap* _FindBitmap(int32 token) const;
120 typedef std::map<int32, BReference<ServerBitmap> > BitmapMap;
H A DServerBitmap.h29 /*! \class ServerBitmap ServerBitmap.h
34 all cursors. Every BBitmap has a shadow ServerBitmap object.
36 class ServerBitmap : public BReferenceable { class in inherits:BReferenceable
73 inline void ShallowCopy(const ServerBitmap *from);
87 ServerBitmap(BRect rect, color_space space,
90 ServerBitmap(const ServerBitmap* bmp);
91 virtual ~ServerBitmap();
112 class UtilityBitmap : public ServerBitmap {
[all...]
H A DOffscreenWindow.cpp21 #include "ServerBitmap.h"
26 OffscreenWindow::OffscreenWindow(ServerBitmap* bitmap,
/haiku/src/servers/app/drawing/Painter/
H A DPainter.cpp61 #include "ServerBitmap.h"
1440 Painter::DrawBitmap(const ServerBitmap* bitmap, BRect bitmapRect,
H A DPainter.h42 class ServerBitmap;
235 BRect DrawBitmap(const ServerBitmap* bitmap,
/haiku/src/servers/app/decorator/
H A DDefaultDecorator.cpp44 #include "ServerBitmap.h"
635 ServerBitmap* bitmap = tab->closeBitmaps[index];
666 ServerBitmap* bitmap = tab->zoomBitmaps[index];
688 DefaultDecorator::_DrawButtonBitmap(ServerBitmap* bitmap, bool direct,
740 ServerBitmap*
H A DDefaultDecorator.h25 class ServerBitmap;
55 void _DrawButtonBitmap(ServerBitmap* bitmap,
60 ServerBitmap* _GetBitmapForButton(Decorator::Tab* tab,
H A DDecorator.h30 class ServerBitmap;
71 ServerBitmap* closeBitmaps[4];
72 ServerBitmap* minimizeBitmaps[4];
73 ServerBitmap* zoomBitmaps[4];
/haiku/src/servers/app/drawing/
H A DDrawingEngine.cpp24 #include "ServerBitmap.h"
699 DrawingEngine::DrawBitmap(ServerBitmap* bitmap, const BRect& bitmapRect,
1466 ServerBitmap*
1474 DrawingEngine::ReadBitmap(ServerBitmap* bitmap, bool drawCursor, BRect bounds)
H A DHWInterface.h34 class ServerBitmap;
144 virtual void SetDragBitmap(const ServerBitmap* bitmap,
258 BReference<ServerBitmap>
H A DHWInterface.cpp267 HWInterface::SetDragBitmap(const ServerBitmap* bitmap,
271 fDragBitmap.SetTo((ServerBitmap*)bitmap, false);
H A DDrawingEngine.h32 class ServerBitmap;
65 ServerBitmap* DumpToBitmap();
66 virtual status_t ReadBitmap(ServerBitmap *bitmap, bool drawCursor,
102 virtual void DrawBitmap(ServerBitmap* bitmap,
H A DBitmapHWInterface.cpp25 BitmapHWInterface::BitmapHWInterface(ServerBitmap* bitmap)
H A DBitmapBuffer.h8 class ServerBitmap;
12 BitmapBuffer(ServerBitmap* bitmap);
25 const ServerBitmap* Bitmap() const
29 ServerBitmap* fBitmap;
H A DAlphaMask.h21 class ServerBitmap;
60 ServerBitmap* _CreateTemporaryBitmap(BRect bounds) const;
68 virtual ServerBitmap* _RenderSource(const IntRect& canvasBounds) = 0;
108 virtual ServerBitmap* _RenderSource(const IntRect& canvasBounds);
126 virtual ServerBitmap* _RenderSource(const IntRect& canvasBounds);
H A DAlphaMask.cpp20 #include "ServerBitmap.h"
156 ServerBitmap*
181 ServerBitmap* const bitmap = _RenderSource(fCanvasBounds);
182 BReference<ServerBitmap> bitmapRef(bitmap, true);
326 ServerBitmap*
370 ServerBitmap*
397 BReference<ServerBitmap> bitmap(_CreateTemporaryBitmap(fBounds), true);
/haiku/src/add-ons/decorators/FlatDecorator/
H A DFlatDecorator.cpp43 #include "ServerBitmap.h"
701 ServerBitmap* bitmap = tab->closeBitmaps[index];
732 ServerBitmap* bitmap = tab->zoomBitmaps[index];
754 FlatDecorator::_DrawButtonBitmap(ServerBitmap* bitmap, bool direct,
809 ServerBitmap*
H A DFlatDecorator.h24 class ServerBitmap;
60 void _DrawButtonBitmap(ServerBitmap* bitmap,
65 ServerBitmap* _GetBitmapForButton(Decorator::Tab* tab,
/haiku/src/servers/app/drawing/interface/remote/
H A DRemoteDrawingEngine.cpp317 RemoteDrawingEngine::DrawBitmap(ServerBitmap* bitmap, const BRect& _bitmapRect,
949 RemoteDrawingEngine::ReadBitmap(ServerBitmap* bitmap, bool drawCursor,
1073 RemoteDrawingEngine::_ExtractBitmapRegions(ServerBitmap& bitmap, uint32 options,
H A DRemoteHWInterface.cpp546 RemoteHWInterface::SetDragBitmap(const ServerBitmap* bitmap,

Completed in 144 milliseconds

12