2006-02-05 21:14:14 +03:00
|
|
|
/*
|
2009-06-20 14:10:01 +04:00
|
|
|
* Copyright 2006-2009, Haiku, Inc. All Rights Reserved.
|
2006-02-05 21:14:14 +03:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2002-07-09 16:24:59 +04:00
|
|
|
#ifndef _CURSOR_H
|
|
|
|
#define _CURSOR_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <Archivable.h>
|
|
|
|
#include <InterfaceDefs.h>
|
|
|
|
|
|
|
|
|
|
|
|
class BCursor : BArchivable {
|
2009-06-20 14:10:01 +04:00
|
|
|
public:
|
|
|
|
BCursor(const void* cursorData);
|
|
|
|
BCursor(const BCursor& other);
|
|
|
|
BCursor(BMessage* data);
|
|
|
|
virtual ~BCursor();
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2009-06-20 14:10:01 +04:00
|
|
|
virtual status_t Archive(BMessage* archive,
|
|
|
|
bool deep = true) const;
|
|
|
|
static BArchivable* Instantiate(BMessage* archive);
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2009-06-20 14:10:01 +04:00
|
|
|
BCursor& operator=(const BCursor& other);
|
|
|
|
bool operator==(const BCursor& other) const;
|
|
|
|
bool operator!=(const BCursor& other) const;
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2009-06-20 14:10:01 +04:00
|
|
|
private:
|
|
|
|
virtual status_t Perform(perform_code d, void* arg);
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2009-06-20 14:10:01 +04:00
|
|
|
virtual void _ReservedCursor1();
|
|
|
|
virtual void _ReservedCursor2();
|
|
|
|
virtual void _ReservedCursor3();
|
|
|
|
virtual void _ReservedCursor4();
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2009-06-20 14:10:01 +04:00
|
|
|
void _FreeCursorData();
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2009-06-20 14:10:01 +04:00
|
|
|
private:
|
|
|
|
friend class BApplication;
|
|
|
|
friend class BView;
|
|
|
|
|
|
|
|
int32 fServerToken;
|
|
|
|
bool fNeedToFree;
|
|
|
|
|
2009-06-20 16:11:49 +04:00
|
|
|
bool _reservedWasPendingViewCursor;
|
|
|
|
// Probably bogus because of padding.
|
2009-06-20 14:10:01 +04:00
|
|
|
uint32 _reserved[6];
|
2002-07-09 16:24:59 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _CURSOR_H
|