X11: Fix so ClientSize can resize windows with fixed borders

Also fixes issue that NativeWindowBase.Height was setting non-client
height but Width was setting client Width. Both now set client size.

Fixes #259
This commit is contained in:
Fraser Waters 2015-05-12 14:15:33 +01:00
parent d6779d986d
commit 0fb149f97b
2 changed files with 18 additions and 6 deletions

View file

@ -417,8 +417,7 @@ namespace OpenTK.Platform
}
set
{
Rectangle old = ClientRectangle;
ClientRectangle = new Rectangle(old.X, old.Y, value, old.Height);
ClientSize = new Size(value, ClientSize.Height);
}
}
@ -430,8 +429,7 @@ namespace OpenTK.Platform
}
set
{
Rectangle old = ClientRectangle;
Bounds = new Rectangle(old.X, old.Y, old.Width, value);
ClientSize = new Size(ClientSize.Width, value);
}
}

View file

@ -1072,11 +1072,25 @@ namespace OpenTK.Platform.X11
}
set
{
bool is_size_changed = client_rectangle.Size != value;
int width = value.Width;
int height = value.Height;
if (WindowBorder != WindowBorder.Resizable)
{
SetWindowMinMax(width, height, width, height);
}
using (new XLock(window.Display))
{
if (is_size_changed)
{
Functions.XResizeWindow(window.Display, window.Handle,
value.Width, value.Height);
width, height);
}
}
ProcessEvents();
}
}