mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-03 01:40:59 +00:00
Update spacing and formatting to match existing style
This commit is contained in:
parent
ba0180ed77
commit
0df7c55609
|
@ -46,22 +46,25 @@ namespace OpenTK
|
|||
this.mode = mode;
|
||||
this.control = owner;
|
||||
|
||||
window_info = Utilities.CreateMacOSCarbonWindowInfo(control.Handle, false, true, GetXOffset, GetYOffset);
|
||||
window_info = Utilities.CreateMacOSCarbonWindowInfo(control.Handle, false, true, GetXOffset, GetYOffset);
|
||||
}
|
||||
|
||||
private int GetXOffset(){
|
||||
return control.Location.X;
|
||||
}
|
||||
private int GetXOffset()
|
||||
{
|
||||
return control.Location.X;
|
||||
}
|
||||
|
||||
private int GetYOffset(){
|
||||
if (control.TopLevelControl != null) {
|
||||
System.Drawing.Point offset = control.PointToScreen (control.Location);
|
||||
System.Drawing.Point windowOffset = control.TopLevelControl.PointToScreen (System.Drawing.Point.Empty);
|
||||
int relativeY = offset.Y - windowOffset.Y; //control.TopLevelControl.Location.Y is not the same as windowOffset.Y for some reason.
|
||||
return control.TopLevelControl.ClientSize.Height - control.Bottom - relativeY;
|
||||
}
|
||||
return control.Location.Y;
|
||||
}
|
||||
private int GetYOffset()
|
||||
{
|
||||
if (control.TopLevelControl != null)
|
||||
{
|
||||
System.Drawing.Point offset = control.PointToScreen (control.Location);
|
||||
System.Drawing.Point windowOffset = control.TopLevelControl.PointToScreen (System.Drawing.Point.Empty);
|
||||
int relativeY = offset.Y - windowOffset.Y; //control.TopLevelControl.Location.Y is not the same as windowOffset.Y for some reason.
|
||||
return control.TopLevelControl.ClientSize.Height - control.Bottom - relativeY;
|
||||
}
|
||||
return control.Location.Y;
|
||||
}
|
||||
|
||||
#region IGLControl Members
|
||||
|
||||
|
|
|
@ -270,27 +270,29 @@ namespace OpenTK
|
|||
return;
|
||||
}
|
||||
|
||||
if (Configuration.RunningOnMacOS) {
|
||||
DelayUpdate delay = PerformContextUpdate;
|
||||
BeginInvoke(delay); //Need the native window to resize first otherwise our control will be in the wrong place.
|
||||
}
|
||||
else if (context != null)
|
||||
context.Update (Implementation.WindowInfo);
|
||||
|
||||
if (Configuration.RunningOnMacOS)
|
||||
{
|
||||
DelayUpdate delay = PerformContextUpdate;
|
||||
BeginInvoke(delay); //Need the native window to resize first otherwise our control will be in the wrong place.
|
||||
}
|
||||
else if (context != null)
|
||||
context.Update (Implementation.WindowInfo);
|
||||
|
||||
base.OnResize(e);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Needed to delay the invoke on OS X. Also needed because OpenTK is .NET 2, otherwise I'd use an inline Action.
|
||||
/// </summary>
|
||||
public delegate void DelayUpdate();
|
||||
/// <summary>
|
||||
/// Execute the delayed context update
|
||||
/// </summary>
|
||||
public void PerformContextUpdate(){
|
||||
if (context != null)
|
||||
context.Update (Implementation.WindowInfo);
|
||||
}
|
||||
/// <summary>
|
||||
/// Needed to delay the invoke on OS X. Also needed because OpenTK is .NET 2, otherwise I'd use an inline Action.
|
||||
/// </summary>
|
||||
public delegate void DelayUpdate();
|
||||
/// <summary>
|
||||
/// Execute the delayed context update
|
||||
/// </summary>
|
||||
public void PerformContextUpdate()
|
||||
{
|
||||
if (context != null)
|
||||
context.Update (Implementation.WindowInfo);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Raises the ParentChanged event.
|
||||
|
|
|
@ -172,13 +172,6 @@ namespace OpenTK.Platform.MacOS
|
|||
if (carbonWindow.IsControl == false)
|
||||
return;
|
||||
|
||||
// Todo: See if there is a way around using WinForms.
|
||||
//throw new NotImplementedException();
|
||||
/*System.Windows.Forms.Control ctrl = Control.FromHandle(carbonWindow.WindowHandle);
|
||||
|
||||
if (ctrl.TopLevelControl == null)
|
||||
return;*/
|
||||
|
||||
Rect rect = API.GetControlBounds(carbonWindow.WindowHandle);
|
||||
|
||||
Debug.Print("Setting buffer_rect for control.");
|
||||
|
|
Loading…
Reference in a new issue