Update spacing and formatting to match existing style

This commit is contained in:
Paul Kratt 2014-02-22 11:28:14 -06:00
parent ba0180ed77
commit 0df7c55609
3 changed files with 36 additions and 38 deletions

View file

@ -49,12 +49,15 @@ namespace OpenTK
window_info = Utilities.CreateMacOSCarbonWindowInfo(control.Handle, false, true, GetXOffset, GetYOffset);
}
private int GetXOffset(){
private int GetXOffset()
{
return control.Location.X;
}
private int GetYOffset(){
if (control.TopLevelControl != null) {
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.

View file

@ -270,7 +270,8 @@ namespace OpenTK
return;
}
if (Configuration.RunningOnMacOS) {
if (Configuration.RunningOnMacOS)
{
DelayUpdate delay = PerformContextUpdate;
BeginInvoke(delay); //Need the native window to resize first otherwise our control will be in the wrong place.
}
@ -287,7 +288,8 @@ namespace OpenTK
/// <summary>
/// Execute the delayed context update
/// </summary>
public void PerformContextUpdate(){
public void PerformContextUpdate()
{
if (context != null)
context.Update (Implementation.WindowInfo);
}

View file

@ -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.");