Symbol: ServerPicture
src/servers/app/Canvas.h
32
class ServerPicture;
src/servers/app/Layer.cpp
34
virtual ServerPicture* GetPicture(int32 token) const
src/servers/app/Layer.h
19
class Layer : public ServerPicture {
src/servers/app/PictureBoundingBoxPlayer.cpp
922
PictureBoundingBoxPlayer::Play(ServerPicture* picture,
src/servers/app/PictureBoundingBoxPlayer.cpp
934
mallocIO->BufferLength(), ServerPicture::PictureList::Private(
src/servers/app/PictureBoundingBoxPlayer.h
14
class ServerPicture;
src/servers/app/PictureBoundingBoxPlayer.h
22
static void Play(ServerPicture* picture,
src/servers/app/ServerApp.cpp
3797
ServerPicture*
src/servers/app/ServerApp.cpp
412
ServerPicture*
src/servers/app/ServerApp.cpp
413
ServerApp::CreatePicture(const ServerPicture* original)
src/servers/app/ServerApp.cpp
415
BReference<ServerPicture> picture;
src/servers/app/ServerApp.cpp
417
picture.SetTo(new(std::nothrow) ServerPicture(*original), true);
src/servers/app/ServerApp.cpp
419
picture.SetTo(new(std::nothrow) ServerPicture(), true);
src/servers/app/ServerApp.cpp
428
ServerPicture*
src/servers/app/ServerApp.cpp
436
ServerPicture* picture = _FindPicture(token);
src/servers/app/ServerApp.cpp
448
ServerApp::AddPicture(ServerPicture* picture)
src/servers/app/ServerApp.cpp
455
fPictureMap.insert(std::make_pair(picture->Token(), BReference<ServerPicture>(picture, false)));
src/servers/app/ServerApp.cpp
466
ServerApp::RemovePicture(ServerPicture* picture)
src/servers/app/ServerApp.cpp
888
BReference<ServerPicture> picture(CreatePicture());
src/servers/app/ServerApp.cpp
897
if (ServerPicture* subPicture = _FindPicture(token))
src/servers/app/ServerApp.cpp
919
ServerPicture* picture = _FindPicture(token);
src/servers/app/ServerApp.cpp
930
BReference<ServerPicture> original;
src/servers/app/ServerApp.cpp
935
BReference<ServerPicture> cloned(CreatePicture(original), true);
src/servers/app/ServerApp.cpp
953
BReference<ServerPicture> picture(GetPicture(token), true);
src/servers/app/ServerApp.h
116
ServerPicture* _FindPicture(int32 token) const;
src/servers/app/ServerApp.h
120
typedef std::map<int32, BReference<ServerPicture> > PictureMap;
src/servers/app/ServerApp.h
33
class ServerPicture;
src/servers/app/ServerApp.h
87
ServerPicture* CreatePicture(
src/servers/app/ServerApp.h
88
const ServerPicture* original = NULL);
src/servers/app/ServerApp.h
89
ServerPicture* GetPicture(int32 token) const;
src/servers/app/ServerApp.h
90
bool AddPicture(ServerPicture* picture);
src/servers/app/ServerApp.h
91
void RemovePicture(ServerPicture* picture);
src/servers/app/ServerPicture.cpp
1047
ServerPicture::ServerPicture()
src/servers/app/ServerPicture.cpp
1059
ServerPicture::ServerPicture(const ServerPicture& picture)
src/servers/app/ServerPicture.cpp
1084
ServerPicture::ServerPicture(const char* fileName, int32 offset)
src/servers/app/ServerPicture.cpp
1109
ServerPicture::~ServerPicture()
src/servers/app/ServerPicture.cpp
1117
ServerPicture* picture = fPictures->ItemAt(i);
src/servers/app/ServerPicture.cpp
1129
ServerPicture::SetOwner(ServerApp* owner)
src/servers/app/ServerPicture.cpp
1138
BReference<ServerPicture> _(this);
src/servers/app/ServerPicture.cpp
1156
ServerPicture::EnterStateChange()
src/servers/app/ServerPicture.cpp
1163
ServerPicture::ExitStateChange()
src/servers/app/ServerPicture.cpp
1170
ServerPicture::SyncState(Canvas* canvas)
src/servers/app/ServerPicture.cpp
1193
ServerPicture::WriteFontState(const ServerFont& font, uint16 mask)
src/servers/app/ServerPicture.cpp
1240
ServerPicture::Play(Canvas* target)
src/servers/app/ServerPicture.cpp
1259
ServerPicture::PushPicture(ServerPicture* picture)
src/servers/app/ServerPicture.cpp
1270
ServerPicture*
src/servers/app/ServerPicture.cpp
1271
ServerPicture::PopPicture()
src/servers/app/ServerPicture.cpp
1278
ServerPicture::AppendPicture(ServerPicture* picture)
src/servers/app/ServerPicture.cpp
1286
ServerPicture::NestPicture(ServerPicture* picture)
src/servers/app/ServerPicture.cpp
1304
ServerPicture::DataLength() const
src/servers/app/ServerPicture.cpp
1315
ServerPicture::ImportData(BPrivate::LinkReceiver& link)
src/servers/app/ServerPicture.cpp
1339
ServerPicture::ExportData(BPrivate::PortLink& link)
src/servers/app/ServerPicture.cpp
1352
ServerPicture* subPicture = fPictures->ItemAt(i);
src/servers/app/ServerPicture.cpp
242
CanvasCallbacks(Canvas* const canvas, BObjectList<ServerPicture>& pictures);
src/servers/app/ServerPicture.cpp
311
BObjectList<ServerPicture>& fPictures;
src/servers/app/ServerPicture.cpp
315
CanvasCallbacks::CanvasCallbacks(Canvas* const canvas, BObjectList<ServerPicture>& pictures)
src/servers/app/ServerPicture.cpp
657
BReference<ServerPicture> picture(fPictures.ItemAt(token), false);
src/servers/app/ServerPicture.cpp
692
BReference<ServerPicture> picture(fPictures.ItemAt(pictureToken), false);
src/servers/app/ServerPicture.h
36
class ServerPicture : public BReferenceable, public PictureDataWriter {
src/servers/app/ServerPicture.h
38
ServerPicture();
src/servers/app/ServerPicture.h
39
ServerPicture(const ServerPicture& other);
src/servers/app/ServerPicture.h
40
ServerPicture(const char* fileName,
src/servers/app/ServerPicture.h
42
virtual ~ServerPicture();
src/servers/app/ServerPicture.h
59
void PushPicture(ServerPicture* picture);
src/servers/app/ServerPicture.h
60
ServerPicture* PopPicture();
src/servers/app/ServerPicture.h
62
void AppendPicture(ServerPicture* picture);
src/servers/app/ServerPicture.h
63
int32 NestPicture(ServerPicture* picture);
src/servers/app/ServerPicture.h
73
typedef BObjectList<ServerPicture> PictureList;
src/servers/app/ServerPicture.h
82
BReference<ServerPicture>
src/servers/app/ServerWindow.cpp
2111
BReference<ServerPicture> picture(fServerApp->GetPicture(pictureToken), true);
src/servers/app/ServerWindow.cpp
2388
BReference<ServerPicture> picture(App()->CreatePicture(), true);
src/servers/app/ServerWindow.cpp
2404
BReference<ServerPicture> picture(App()->GetPicture(token), true);
src/servers/app/ServerWindow.cpp
2418
ServerPicture* picture = fCurrentView->Picture();
src/servers/app/ServerWindow.cpp
3233
BReference<ServerPicture> picture(App()->GetPicture(token), true);
src/servers/app/ServerWindow.cpp
3281
ServerPicture* picture = fCurrentView->Picture();
src/servers/app/ServerWindow.cpp
4010
BReference<ServerPicture> pictureToDraw(App()->GetPicture(token), true);
src/servers/app/ServerWindow.cpp
4014
BReference<ServerPicture> copy(App()->CreatePicture(pictureToDraw), true);
src/servers/app/ServerWindow.cpp
4062
BReference<ServerPicture> pictureToClip(fServerApp->GetPicture(pictureToken), true);
src/servers/app/ServerWindow.cpp
4066
BReference<ServerPicture> copy(App()->CreatePicture(pictureToClip), true);
src/servers/app/ServerWindow.cpp
4110
BReference <ServerPicture> newPicture(App()->CreatePicture(), true);
src/servers/app/ServerWindow.cpp
4124
BReference<ServerPicture> appendPicture(App()->GetPicture(token), true);
src/servers/app/ServerWindow.cpp
4137
BReference<ServerPicture> poppedPicture(picture->PopPicture(), true);
src/servers/app/ServerWindow.h
44
class ServerPicture;
src/servers/app/View.cpp
1026
View::SetPicture(ServerPicture* picture)
src/servers/app/View.cpp
214
ServerPicture*
src/servers/app/View.h
165
void SetPicture(ServerPicture* picture);
src/servers/app/View.h
166
ServerPicture* Picture() const
src/servers/app/View.h
275
BReference<ServerPicture>
src/servers/app/View.h
42
class ServerPicture;
src/servers/app/View.h
83
ServerPicture* GetPicture(int32 token) const;
src/servers/app/drawing/AlphaMask.cpp
447
ServerPicture* picture, const DrawState& drawState, BPoint where,
src/servers/app/drawing/AlphaMask.h
140
ServerPicture* picture,
src/servers/app/drawing/AlphaMask.h
153
BReference<ServerPicture> fPicture;
src/servers/app/drawing/AlphaMask.h
22
class ServerPicture;