Forgotten header checkin. :P
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4954 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
4087744eef
commit
280bc131fd
@ -28,6 +28,7 @@
|
|||||||
#define SERVERCURSOR_H_
|
#define SERVERCURSOR_H_
|
||||||
|
|
||||||
#include <Point.h>
|
#include <Point.h>
|
||||||
|
#include <String.h>
|
||||||
#include "ServerBitmap.h"
|
#include "ServerBitmap.h"
|
||||||
|
|
||||||
class ServerApp;
|
class ServerApp;
|
||||||
@ -53,7 +54,7 @@ public:
|
|||||||
//! Returns the cursor's hot spot
|
//! Returns the cursor's hot spot
|
||||||
BPoint GetHotSpot(void) { return _hotspot; }
|
BPoint GetHotSpot(void) { return _hotspot; }
|
||||||
void SetHotSpot(BPoint pt);
|
void SetHotSpot(BPoint pt);
|
||||||
const char *GetAppSignature(void) { return _app_signature; }
|
const char *GetAppSignature(void) { return _app_signature.String(); }
|
||||||
void SetAppSignature(const char *signature);
|
void SetAppSignature(const char *signature);
|
||||||
|
|
||||||
//! Returns the cursor's ID
|
//! Returns the cursor's ID
|
||||||
@ -62,7 +63,7 @@ private:
|
|||||||
friend class CursorManager;
|
friend class CursorManager;
|
||||||
|
|
||||||
BPoint _hotspot;
|
BPoint _hotspot;
|
||||||
char *_app_signature;
|
BString _app_signature;
|
||||||
int32 _token;
|
int32 _token;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user