Update conditionals and formatting
This commit is contained in:
parent
d86967eb7c
commit
3d9d6d7ee3
4 changed files with 30 additions and 23 deletions
|
@ -1236,19 +1236,17 @@ namespace OpenTK.Platform.MacOS
|
|||
|
||||
public override bool CursorVisible
|
||||
{
|
||||
get { return cursorVisible; }
|
||||
get
|
||||
{
|
||||
return cursorVisible;
|
||||
}
|
||||
set
|
||||
{
|
||||
if (value == cursorVisible) return;
|
||||
if (value && !cursorVisible)
|
||||
if (value != cursorVisible)
|
||||
{
|
||||
SetCursorVisible(true);
|
||||
SetCursorVisible(value);
|
||||
cursorVisible = value;
|
||||
}
|
||||
else if (!value && cursorVisible)
|
||||
{
|
||||
SetCursorVisible(false);
|
||||
}
|
||||
cursorVisible = value;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -933,10 +933,9 @@ namespace OpenTK.Platform.SDL2
|
|||
}
|
||||
set
|
||||
{
|
||||
if (value == is_cursor_visible) return;
|
||||
lock (sync)
|
||||
{
|
||||
if (Exists)
|
||||
if (Exists && value != is_cursor_visible)
|
||||
{
|
||||
GrabCursor(!value);
|
||||
is_cursor_visible = value;
|
||||
|
|
|
@ -1256,10 +1256,17 @@ namespace OpenTK.Platform.Windows
|
|||
|
||||
public override bool CursorVisible
|
||||
{
|
||||
get { return cursor_visible_count >= 0; }
|
||||
get
|
||||
{
|
||||
return cursor_visible_count >= 0;
|
||||
}
|
||||
set
|
||||
{
|
||||
if (value && cursor_visible_count < 0)
|
||||
if (value == CursorVisible)
|
||||
{
|
||||
return;
|
||||
}
|
||||
if (value)
|
||||
{
|
||||
do
|
||||
{
|
||||
|
@ -1269,7 +1276,7 @@ namespace OpenTK.Platform.Windows
|
|||
|
||||
UngrabCursor();
|
||||
}
|
||||
else if (!value && cursor_visible_count >= 0)
|
||||
else
|
||||
{
|
||||
do
|
||||
{
|
||||
|
|
|
@ -1684,12 +1684,19 @@ namespace OpenTK.Platform.X11
|
|||
|
||||
public override bool CursorVisible
|
||||
{
|
||||
get { return cursor_visible; }
|
||||
get
|
||||
{
|
||||
return cursor_visible;
|
||||
}
|
||||
set
|
||||
{
|
||||
if (value && !cursor_visible)
|
||||
if (value == cursor_visible)
|
||||
{
|
||||
using (new XLock(window.Display))
|
||||
return;
|
||||
}
|
||||
using (new XLock(window.Display))
|
||||
{
|
||||
if (value)
|
||||
{
|
||||
UngrabMouse();
|
||||
|
||||
|
@ -1699,16 +1706,12 @@ namespace OpenTK.Platform.X11
|
|||
// Note: if cursorHandle = IntPtr.Zero, this restores the default cursor
|
||||
// (equivalent to calling XUndefineCursor)
|
||||
Functions.XDefineCursor(window.Display, window.Handle, cursorHandle);
|
||||
cursor_visible = true;
|
||||
}
|
||||
}
|
||||
else if (!value && cursor_visible)
|
||||
{
|
||||
using (new XLock(window.Display))
|
||||
else
|
||||
{
|
||||
GrabMouse();
|
||||
cursor_visible = false;
|
||||
}
|
||||
cursor_visible = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue