blob: 6e9618fc6d337e89aa81623e70e493e6383b28af (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#include <precomp.h>
#include "cursor.h"
#define CBCLASS CursorI
START_DISPATCH;
CB(CURSOR_GETOSHANDLE, getOSHandle);
END_DISPATCH;
#ifdef WASABI_COMPILE_SKIN
SkinCursor::SkinCursor(const wchar_t *elementid) {
name = elementid;
cursor = NULL;
WASABI_API_SYSCB->syscb_registerCallback(static_cast<SkinCallbackI *>(this));
}
SkinCursor::SkinCursor() {
WASABI_API_SYSCB->syscb_registerCallback(static_cast<SkinCallbackI *>(this));
cursor = NULL;
}
SkinCursor::~SkinCursor() {
WASABI_API_SYSCB->syscb_deregisterCallback(static_cast<SkinCallbackI *>(this));
}
OSCURSORHANDLE SkinCursor::getOSHandle() {
if (cursor == NULL && !name.isempty()) {
cursor = WASABI_API_SKIN->cursor_request(name);
}
return cursor;
}
int SkinCursor::skincb_onReset() {
reset();
return 1;
}
void SkinCursor::reset() {
cursor = NULL;
}
void SkinCursor::setCursorElementId(const wchar_t *id) {
name = id;
reset();
}
#endif
|