2009-07-28 16:33:47 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2001-2009, Haiku.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
*/
|
2007-08-04 15:16:22 +04:00
|
|
|
|
|
|
|
#ifndef _PICTURE_H
|
|
|
|
#define _PICTURE_H
|
|
|
|
|
|
|
|
#include <BeBuild.h>
|
|
|
|
#include <InterfaceDefs.h>
|
|
|
|
#include <Rect.h>
|
|
|
|
#include <Archivable.h>
|
|
|
|
|
2007-10-16 00:13:55 +04:00
|
|
|
class BDataIO;
|
2007-08-04 15:16:22 +04:00
|
|
|
class BView;
|
|
|
|
struct _BPictureExtent_;
|
|
|
|
|
|
|
|
// BPicture class --------------------------------------------------------------
|
|
|
|
class BPicture : public BArchivable {
|
|
|
|
public:
|
|
|
|
BPicture();
|
|
|
|
BPicture(const BPicture &original);
|
|
|
|
BPicture(BMessage *data);
|
|
|
|
virtual ~BPicture();
|
|
|
|
static BArchivable *Instantiate(BMessage *data);
|
|
|
|
virtual status_t Archive(BMessage *data, bool deep = true) const;
|
|
|
|
virtual status_t Perform(perform_code d, void *arg);
|
|
|
|
|
|
|
|
status_t Play(void **callBackTable,
|
|
|
|
int32 tableEntries,
|
|
|
|
void *userData);
|
|
|
|
|
|
|
|
status_t Flatten(BDataIO *stream);
|
|
|
|
status_t Unflatten(BDataIO *stream);
|
|
|
|
|
|
|
|
/*----- Private or reserved -----------------------------------------*/
|
|
|
|
private:
|
|
|
|
|
|
|
|
friend class BWindow;
|
|
|
|
friend class BView;
|
|
|
|
friend class BPrintJob;
|
|
|
|
|
|
|
|
virtual void _ReservedPicture1();
|
|
|
|
virtual void _ReservedPicture2();
|
|
|
|
virtual void _ReservedPicture3();
|
|
|
|
|
|
|
|
BPicture &operator=(const BPicture &);
|
|
|
|
|
2007-08-13 19:28:31 +04:00
|
|
|
void _InitData();
|
|
|
|
void _DisposeData();
|
|
|
|
|
|
|
|
void _ImportOldData(const void *data, int32 size);
|
2007-09-10 18:55:42 +04:00
|
|
|
|
2007-08-13 19:28:31 +04:00
|
|
|
void SetToken(int32 token);
|
2007-09-10 18:55:42 +04:00
|
|
|
int32 Token() const;
|
|
|
|
|
2007-08-13 19:28:31 +04:00
|
|
|
bool _AssertLocalCopy();
|
|
|
|
bool _AssertOldLocalCopy();
|
|
|
|
bool _AssertServerCopy();
|
|
|
|
|
|
|
|
status_t _Upload();
|
|
|
|
status_t _Download();
|
2007-08-04 15:16:22 +04:00
|
|
|
|
|
|
|
/**Deprecated API**/
|
|
|
|
BPicture(const void *data, int32 size);
|
|
|
|
const void *Data() const;
|
|
|
|
int32 DataSize() const;
|
|
|
|
|
2007-08-13 19:28:31 +04:00
|
|
|
void Usurp(BPicture *lameDuck);
|
|
|
|
BPicture *StepDown();
|
2007-09-10 18:55:42 +04:00
|
|
|
|
|
|
|
|
|
|
|
int32 fToken;
|
|
|
|
_BPictureExtent_ *fExtent;
|
|
|
|
BPicture *fUsurped;
|
2007-08-04 15:16:22 +04:00
|
|
|
|
|
|
|
uint32 _reserved[3];
|
|
|
|
};
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#endif // _PICTURE_H
|
2002-10-23 17:54:44 +04:00
|
|
|
|