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