mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-29 17:46:29 +03:00
Added cursor implementation for X11 and Windows.
This commit is contained in:
@@ -35,4 +35,31 @@ eeVector2i cNullImpl::Position() {
|
||||
return eeVector2i(0,0);
|
||||
}
|
||||
|
||||
void cNullImpl::ShowMouseCursor() {
|
||||
}
|
||||
|
||||
void cNullImpl::HideMouseCursor() {
|
||||
}
|
||||
|
||||
cCursor * cNullImpl::CreateMouseCursor( cTexture * tex, const eeVector2i& hotspot, const std::string& name ) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
cCursor * cNullImpl::CreateMouseCursor( cImage * img, const eeVector2i& hotspot, const std::string& name ) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
cCursor * cNullImpl::CreateMouseCursor( const std::string& path, const eeVector2i& hotspot, const std::string& name ) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void cNullImpl::SetMouseCursor( cCursor * cursor ) {
|
||||
}
|
||||
|
||||
void cNullImpl::SetSystemMouseCursor( Cursor::EE_SYSTEM_CURSOR syscursor ) {
|
||||
}
|
||||
|
||||
void cNullImpl::RestoreCursor() {
|
||||
}
|
||||
|
||||
}}}
|
||||
|
||||
Reference in New Issue
Block a user