Merge pull request #47 from perturbare/patch-Size-and-Rect-constructor-exceptions

Modifications to prevent negative numbers passed to Size and Rect
This commit is contained in:
Alexander Smirnov 2016-02-17 01:59:55 +03:00
Родитель 8bea52f7c7 cf917ff496
Коммит 32384552f2
4 изменённых файлов: 12 добавлений и 7 удалений

Просмотреть файл

@ -616,7 +616,7 @@ namespace GraphX.Controls
}
catch (Exception ex)
{
throw new GX_GeneralException(ex.Message + ". Probably you have an error in edge template.");
throw new GX_GeneralException(ex.Message + ". Probably you have an error in edge template.", ex);
}
}

Просмотреть файл

@ -181,7 +181,7 @@ namespace GraphX.Controls
double aspectX = availableSize.Width/displayPanelSize.Width;
double aspectY = availableSize.Height/displayPanelSize.Height;
double scale = (aspectX < aspectY) ? aspectX : aspectY;
displayPanelSize = new Size(displayPanelSize.Width*scale, displayPanelSize.Height*scale);
displayPanelSize = new Size(Math.Max(0, displayPanelSize.Width * scale), Math.Max(0, displayPanelSize.Height * scale));
}
return displayPanelSize;

Просмотреть файл

@ -594,7 +594,7 @@ namespace GraphX.Controls
// adjust the viewport from the coordinate space of the Content element
// to the coordinate space of the view finder display panel
var scale = _viewFinderDisplay.Scale;// *_viewboxFactor;
_viewFinderDisplay.ViewportRect = new Rect(viewport.Left * scale, viewport.Top * scale, viewport.Width * scale, viewport.Height * scale);
_viewFinderDisplay.ViewportRect = new Rect(viewport.Left * scale, viewport.Top * scale, Math.Max(0.0, viewport.Width * scale), Math.Max(0.0, viewport.Height * scale));
}
}
@ -621,12 +621,12 @@ namespace GraphX.Controls
if (viewFinderSize.Width > 0d && DoubleHelper.AreVirtuallyEqual(viewFinderSize.Height, 0d))
{
// update height to accomodate width, while keeping a ratio equal to the actual content
viewFinderSize = new Size(viewFinderSize.Width, contentSize.Height * viewFinderSize.Width / contentSize.Width);
viewFinderSize = new Size(viewFinderSize.Width, Math.Max(0, contentSize.Height * viewFinderSize.Width / contentSize.Width));
}
else if (viewFinderSize.Height > 0d && DoubleHelper.AreVirtuallyEqual(viewFinderSize.Width, 0d))
{
// update width to accomodate height, while keeping a ratio equal to the actual content
viewFinderSize = new Size(contentSize.Width * viewFinderSize.Height / contentSize.Height, viewFinderSize.Width);
viewFinderSize = new Size(Math.Max(0, contentSize.Width * viewFinderSize.Height / contentSize.Height), viewFinderSize.Width);
}
// determine the scale of the view finder display panel
@ -642,7 +642,7 @@ namespace GraphX.Controls
// set the ContentBounds and Scale properties on the view finder display panel
_viewFinderDisplay.Scale = scale;
_viewFinderDisplay.ContentBounds = new Rect(new Size(vbWidth, vbHeight));
_viewFinderDisplay.ContentBounds = new Rect(new Size(Math.Max(0, vbWidth), Math.Max(0, vbHeight)));
}
private void UpdateViewboxFactor()

Просмотреть файл

@ -8,5 +8,10 @@ namespace GraphX.PCL.Common.Exceptions
: base(text)
{
}
}
public GX_GeneralException(string text, Exception innerException)
: base(text, innerException)
{
}
}
}