mirror of
https://github.com/Kiritow/MiniEngine.git
synced 2024-03-22 13:11:22 +08:00
Update class Cursor. Fix compile bug in class Window
This commit is contained in:
parent
52cb15482e
commit
1b2ba7b2d8
|
@ -983,33 +983,30 @@ namespace MiniEngine
|
||||||
return _cur.get();
|
return _cur.get();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//private
|
||||||
void Cursor::_clear()
|
void Cursor::_clear()
|
||||||
{
|
{
|
||||||
_cur.reset();
|
_cur.reset();
|
||||||
}
|
}
|
||||||
|
|
||||||
//static
|
Cursor::Cursor(Surface surf,Point hotspot)
|
||||||
Cursor Cursor::CreateCursor(Surface surf,Point hotspot)
|
|
||||||
{
|
{
|
||||||
Cursor ns;
|
Cursor ns;
|
||||||
SDL_Cursor* cursor=SDL_CreateColorCursor(surf._get(),hotspot.x,hotspot.y);
|
SDL_Cursor* cursor=SDL_CreateColorCursor(surf._get(),hotspot.x,hotspot.y);
|
||||||
ns._set(cursor);
|
ns._set(cursor);
|
||||||
return ns;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//static
|
Cursor::Cursor(SystemCursorType type)
|
||||||
Cursor Cursor::CreateSystemCursor(SystemCursorType type)
|
|
||||||
{
|
{
|
||||||
Cursor ns;
|
Cursor ns;
|
||||||
ns._set(SDL_CreateSystemCursor(_internal::getSDLSystemCursorFromSystemCursorType(type)));
|
ns._set(SDL_CreateSystemCursor(_internal::getSDLSystemCursorFromSystemCursorType(type)));
|
||||||
return ns;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//static
|
//static
|
||||||
Cursor Cursor::GetActiveCursor()
|
Cursor Cursor::GetActiveCursor()
|
||||||
{
|
{
|
||||||
Cursor ns;
|
Cursor ns;
|
||||||
ns._set(SDL_GetCursor());
|
ns._set_no_delete(SDL_GetCursor());
|
||||||
return ns;
|
return ns;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1017,7 +1014,7 @@ namespace MiniEngine
|
||||||
Cursor Cursor::GetDefaultCursor()
|
Cursor Cursor::GetDefaultCursor()
|
||||||
{
|
{
|
||||||
Cursor ns;
|
Cursor ns;
|
||||||
ns._set(SDL_GetDefaultCursor());
|
ns._set_no_delete(SDL_GetDefaultCursor());
|
||||||
return ns;
|
return ns;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1028,7 +1025,7 @@ namespace MiniEngine
|
||||||
}
|
}
|
||||||
|
|
||||||
//static
|
//static
|
||||||
void Cursor::show(bool Settings)
|
void Cursor::setShow(bool Settings)
|
||||||
{
|
{
|
||||||
SDL_ShowCursor(Settings?SDL_ENABLE:SDL_DISABLE);
|
SDL_ShowCursor(Settings?SDL_ENABLE:SDL_DISABLE);
|
||||||
}
|
}
|
||||||
|
@ -1040,7 +1037,10 @@ namespace MiniEngine
|
||||||
|
|
||||||
void Cursor::activate()
|
void Cursor::activate()
|
||||||
{
|
{
|
||||||
SDL_SetCursor(_get());
|
if(_get()!=nullptr)
|
||||||
|
{
|
||||||
|
SDL_SetCursor(_get());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Window::_set(SDL_Window* p)
|
void Window::_set(SDL_Window* p)
|
||||||
|
|
|
@ -238,13 +238,14 @@ namespace MiniEngine
|
||||||
class Cursor
|
class Cursor
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
static Cursor CreateSystemCursor(SystemCursorType);
|
Cursor()=default;
|
||||||
static Cursor CreateCursor(Surface surf,Point hotspot={0,0});
|
Cursor(SystemCursorType);
|
||||||
|
Cursor(Surface surf,Point hotspot={0,0});
|
||||||
|
|
||||||
static Cursor GetActiveCursor();
|
static Cursor GetActiveCursor();
|
||||||
static Cursor GetDefaultCursor();
|
static Cursor GetDefaultCursor();
|
||||||
|
|
||||||
static void show(bool);
|
static void setShow(bool);
|
||||||
static bool isShow();
|
static bool isShow();
|
||||||
|
|
||||||
void activate();
|
void activate();
|
||||||
|
@ -333,7 +334,7 @@ namespace MiniEngine
|
||||||
void _setRenderer(int& refcalc,RendererType Type,Args&&... args)
|
void _setRenderer(int& refcalc,RendererType Type,Args&&... args)
|
||||||
{
|
{
|
||||||
refcalc|=_render_caster(Type);
|
refcalc|=_render_caster(Type);
|
||||||
_setRenderer(args...);
|
_setRenderer(refcalc,args...);
|
||||||
}
|
}
|
||||||
|
|
||||||
void _setRenderer(int& refcalc,RendererType Type)
|
void _setRenderer(int& refcalc,RendererType Type)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user