Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGalleryCategoriesPanel.cs (11)
144fValid &= DoubleUtil.AreClose(viewport, _scrollData._viewport);
145fValid &= DoubleUtil.AreClose(extent, _scrollData._extent);
146fValid &= DoubleUtil.AreClose(offset, _scrollData._offset);
175bool fAbove = DoubleUtil.LessThan(topChild, topView) && DoubleUtil.LessThan(bottomChild, bottomView);
176bool fBelow = DoubleUtil.GreaterThan(bottomChild, bottomView) && DoubleUtil.GreaterThan(topChild, topView);
398if (!category.IsSharedColumnSizeScope && DoubleUtil.GreaterThan(category.MaxColumnWidth, maxColumnWidth))
491logicalVisibleSpace = DoubleUtil.LessThanOrClose((viewportOffsetY + logicalVisibleSpace) - stackDesiredSize.Height, 0.0) ? 0.0 : Math.Min((viewportOffsetY + logicalVisibleSpace) - stackDesiredSize.Height, constraint.Height);
764if (!DoubleUtil.AreClose(scrollX, _scrollData._offset.X))
778if (!DoubleUtil.AreClose(scrollY, _scrollData._offset.Y))
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupsPanel.cs (23)
106if (!DoubleUtil.AreClose(originalRenderWidth, invalidGroup.ActualWidth))
150if (DoubleUtil.GreaterThan(remainingSpace, 0))
158if ((DoubleUtil.GreaterThanOrClose(_cachedRemainingSpace, 0) && (DoubleUtil.LessThan(remainingSpace, 0) || DoubleUtil.GreaterThan(remainingSpace, _cachedRemainingSpace))) ||
159(DoubleUtil.LessThan(_cachedRemainingSpace, 0) && DoubleUtil.GreaterThan(remainingSpace, 0)))
164while (DoubleUtil.GreaterThan(remainingSpace, 0))
176if (DoubleUtil.GreaterThan(remainingSpace, 0))
179DoubleUtil.GreaterThanOrClose(remainingSpace, _nextGroupIncreaseWidth))
200while (DoubleUtil.LessThan(remainingSpace, 0))
234if (DoubleUtil.GreaterThan(remainingSpace, 0))
251else if (DoubleUtil.GreaterThan(remainingSpace, 0))
352if (!DoubleUtil.AreClose(remainingSpace, newRemainingSpace))
382if (starLayoutInfo != null && DoubleUtil.GreaterThan(starLayoutInfo.RequestedStarWeight, 0))
399if (DoubleUtil.GreaterThan(remainingSpace, 0))
411if (rightMostEqualizerIndex >= 0 && DoubleUtil.GreaterThan(remainingSpace, 0))
436Debug.Assert(DoubleUtil.GreaterThan(remainingSpace, 0));
441if (DoubleUtil.LessThanOrClose(EqualizeLeftOf(starInfoList, elementCount - 1, true), remainingSpace))
457if (DoubleUtil.LessThanOrClose(EqualizeLeftOf(starInfoList, currentIndex, true), remainingSpace))
502Debug.Assert(DoubleUtil.GreaterThan(remainingSpace, 0));
514if (DoubleUtil.GreaterThan(remainingSpace, 0))
519if (DoubleUtil.GreaterThan(currentContribution * remainingStarWeight, remainingSpace))
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonTabHeadersPanel.cs (23)
61if (DoubleUtil.GreaterThan(overflowWidth, 0))
67if (DoubleUtil.GreaterThan(overflowWidth, totalDefaultPaddingAllTabHeaders)) // Clipping is necessary - all tabs padding will we 0
74if (DoubleUtil.AreClose(maxRegularTabHeaderWidth, _tabHeaderMinWidth)) // Regular tabs are clipped to the min size - need to clip contextual tabs
86if (DoubleUtil.GreaterThanOrClose(totalDefaultPaddingRegularTabHeaders, overflowWidth))
119if (ctg != null && DoubleUtil.GreaterThan(ctg.DesiredExtraPaddingPerTab, 0.0))
234if (!SystemParameters.HighContrast && DoubleUtil.GreaterThan(_separatorOpacity, 0))
478if (DoubleUtil.LessThanOrClose(clipWidth, 0))
519if (DoubleUtil.GreaterThanOrClose(maxTabHeaderWidth, currentWidth))
552if (tabGroup != null && DoubleUtil.GreaterThan(tabGroup.DesiredExtraPaddingPerTab, 0.0))
569if (DoubleUtil.LessThanOrClose(delta, 0.0))
579if (DoubleUtil.GreaterThanOrClose(maxDesiredPadding, currentDesiredPadding))
615if (!DoubleUtil.IsZero(tabGroup.DesiredExtraPaddingPerTab))
802fValid &= DoubleUtil.AreClose(viewportWidth, ScrollData._viewportWidth);
803fValid &= DoubleUtil.AreClose(extentWidth, ScrollData._extentWidth);
804fValid &= DoubleUtil.AreClose(ScrollData._offsetX, offsetX);
820if (DoubleUtil.GreaterThan(offset, extent - viewport))
825if (DoubleUtil.LessThan(offset, 0))
849if (!DoubleUtil.AreClose(ScrollData._offsetX, newValue))
910if (!DoubleUtil.AreClose(originalOffset, ScrollData._offsetX))
947bool fAbove = DoubleUtil.LessThan(topChild, topView) && DoubleUtil.LessThan(bottomChild, bottomView);
948bool fBelow = DoubleUtil.GreaterThan(bottomChild, bottomView) && DoubleUtil.GreaterThan(topChild, topView);
Microsoft\Windows\Controls\Ribbon\RibbonDropDownHelper.cs (17)
65bool isAtBottomScreenEdge = DoubleUtil.GreaterThanOrClose(rootScreenBounds.Bottom, screenBounds.Bottom);
66bool isAtTopScreenEdge = DoubleUtil.LessThanOrClose(rootScreenBounds.Top, screenBounds.Top + TopScreenEdgeBuffer);
67bool isAtRightScreenEdge = DoubleUtil.GreaterThanOrClose(rootScreenBounds.Right, screenBounds.Right);
68bool isAtLeftScreenEdge = DoubleUtil.LessThanOrClose(rootScreenBounds.Left, screenBounds.Left);
72bool isAlmostAtBottomScreenEdge = DoubleUtil.GreaterThanOrClose(rootScreenBounds.Bottom + verticalDelta, screenBounds.Bottom);
73bool isAlmostAtTopScreenEdge = DoubleUtil.LessThanOrClose(rootScreenBounds.Top - verticalDelta, screenBounds.Top + TopScreenEdgeBuffer);
74bool isAlmostAtRightScreenEdge = DoubleUtil.GreaterThanOrClose(rootScreenBounds.Right + horizontalDelta, screenBounds.Right);
75bool isAlmostAtLeftScreenEdge = DoubleUtil.LessThanOrClose(rootScreenBounds.Left - horizontalDelta, screenBounds.Left);
79if (isAtTopScreenEdge && DoubleUtil.GreaterThanOrClose(verticalDelta, 0))
90if (isAtBottomScreenEdge && DoubleUtil.GreaterThanOrClose(verticalDelta, 0))
102if (isAtRightScreenEdge && DoubleUtil.GreaterThanOrClose(horizontalDelta, 0))
111if (isAtLeftScreenEdge && DoubleUtil.GreaterThanOrClose(horizontalDelta, 0))
134if (canUserResizeHorizontally && DoubleUtil.GreaterThanOrClose(newWidth, 0) &&
135DoubleUtil.LessThanOrClose(minDropDownSize.Width, newWidth))
141if (canUserResizeVertically && DoubleUtil.GreaterThanOrClose(newHeight, 0)
142&& DoubleUtil.LessThanOrClose(minDropDownSize.Height, newHeight))
218if (popupChild != null && DoubleUtil.GreaterThan(popupChild.MinWidth, minSize.Width))