@nodert-win10-cu/windows.ui.xaml.controls.primitives
Version:
Use the Windows.UI.Xaml.Controls.Primitives UWP API directly from Node.js
1,460 lines (1,271 loc) • 236 kB
JavaScript
Rect = (function () {
var cls = function Rect() {
};
return cls;
}) ();
exports.Rect = Rect;
Thickness = (function () {
var cls = function Thickness() {
};
return cls;
}) ();
exports.Thickness = Thickness;
GridLength = (function () {
var cls = function GridLength() {
};
return cls;
}) ();
exports.GridLength = GridLength;
Point = (function () {
var cls = function Point() {
};
return cls;
}) ();
exports.Point = Point;
Size = (function () {
var cls = function Size() {
};
return cls;
}) ();
exports.Size = Size;
FontWeight = (function () {
var cls = function FontWeight() {
this.weight = new Number();
};
return cls;
}) ();
exports.FontWeight = FontWeight;
CornerRadius = (function () {
var cls = function CornerRadius() {
};
return cls;
}) ();
exports.CornerRadius = CornerRadius;
_GeneratorDirection = function () {
this.forward = 0;
this.backward = 1;
}
exports.GeneratorDirection = new _GeneratorDirection();
_GroupHeaderPlacement = function () {
this.top = 0;
this.left = 1;
}
exports.GroupHeaderPlacement = new _GroupHeaderPlacement();
_PlacementMode = function () {
this.bottom = 0;
this.left = 1;
this.mouse = 2;
this.right = 3;
this.top = 4;
}
exports.PlacementMode = new _PlacementMode();
_ScrollEventType = function () {
this.smallDecrement = 0;
this.smallIncrement = 1;
this.largeDecrement = 2;
this.largeIncrement = 3;
this.thumbPosition = 4;
this.thumbTrack = 5;
this.first = 6;
this.last = 7;
this.endScroll = 8;
}
exports.ScrollEventType = new _ScrollEventType();
_ScrollingIndicatorMode = function () {
this.none = 0;
this.touchIndicator = 1;
this.mouseIndicator = 2;
}
exports.ScrollingIndicatorMode = new _ScrollingIndicatorMode();
_SliderSnapsTo = function () {
this.stepValues = 0;
this.ticks = 1;
}
exports.SliderSnapsTo = new _SliderSnapsTo();
_SnapPointsAlignment = function () {
this.near = 0;
this.center = 1;
this.far = 2;
}
exports.SnapPointsAlignment = new _SnapPointsAlignment();
_TickPlacement = function () {
this.none = 0;
this.topLeft = 1;
this.bottomRight = 2;
this.outside = 3;
this.inline = 4;
}
exports.TickPlacement = new _TickPlacement();
_ListViewItemPresenterCheckMode = function () {
this.inline = 0;
this.overlay = 1;
}
exports.ListViewItemPresenterCheckMode = new _ListViewItemPresenterCheckMode();
_AnimationDirection = function () {
this.left = 0;
this.top = 1;
this.right = 2;
this.bottom = 3;
}
exports.AnimationDirection = new _AnimationDirection();
_ComponentResourceLocation = function () {
this.application = 0;
this.nested = 1;
}
exports.ComponentResourceLocation = new _ComponentResourceLocation();
_EdgeTransitionLocation = function () {
this.left = 0;
this.top = 1;
this.right = 2;
this.bottom = 3;
}
exports.EdgeTransitionLocation = new _EdgeTransitionLocation();
_FlyoutPlacementMode = function () {
this.top = 0;
this.bottom = 1;
this.left = 2;
this.right = 3;
this.full = 4;
}
exports.FlyoutPlacementMode = new _FlyoutPlacementMode();
ItemsChangedEventArgs = (function () {
var cls = function ItemsChangedEventArgs() {
this.action = new Number();
this.itemCount = new Number();
this.itemUICount = new Number();
this.oldPosition = new GeneratorPosition();
this.position = new GeneratorPosition();
};
return cls;
}) ();
exports.ItemsChangedEventArgs = ItemsChangedEventArgs;
IScrollSnapPointsInfo = (function () {
var cls = function IScrollSnapPointsInfo() {
this.areHorizontalSnapPointsRegular = new Boolean();
this.areVerticalSnapPointsRegular = new Boolean();
};
cls.prototype.getIrregularSnapPoints = function getIrregularSnapPoints(orientation, alignment) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="orientation" type="Number">A param.</param>
/// <param name="alignment" type="SnapPointsAlignment">A param.</param>
/// <returns type="Object" />
/// </signature>
return new Object();
}
cls.prototype.getRegularSnapPoints = function getRegularSnapPoints(orientation, alignment, offset) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="orientation" type="Number">A param.</param>
/// <param name="alignment" type="SnapPointsAlignment">A param.</param>
/// <param name="offset" type="Number">A param.</param>
/// <returns type="Number" />
/// </signature>
return new Number();
}
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.IScrollSnapPointsInfo = IScrollSnapPointsInfo;
LayoutInformation = (function () {
var cls = function LayoutInformation() {
};
cls.getLayoutExceptionElement = function getLayoutExceptionElement(dispatcher) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="dispatcher" type="Object">A param.</param>
/// <returns type="Object" />
/// </signature>
return new Object();
}
cls.getLayoutSlot = function getLayoutSlot(element) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="element" type="Object">A param.</param>
/// <returns type="Object" />
/// </signature>
return new Object();
}
return cls;
}) ();
exports.LayoutInformation = LayoutInformation;
ProgressRingTemplateSettings = (function () {
var cls = function ProgressRingTemplateSettings() {
this.ellipseDiameter = new Number();
this.ellipseOffset = new Thickness();
this.maxSideLength = new Number();
this.dispatcher = new Object();
};
return cls;
}) ();
exports.ProgressRingTemplateSettings = ProgressRingTemplateSettings;
ToggleSwitchTemplateSettings = (function () {
var cls = function ToggleSwitchTemplateSettings() {
this.curtainCurrentToOffOffset = new Number();
this.curtainCurrentToOnOffset = new Number();
this.curtainOffToOnOffset = new Number();
this.curtainOnToOffOffset = new Number();
this.knobCurrentToOffOffset = new Number();
this.knobCurrentToOnOffset = new Number();
this.knobOffToOnOffset = new Number();
this.knobOnToOffOffset = new Number();
this.dispatcher = new Object();
};
return cls;
}) ();
exports.ToggleSwitchTemplateSettings = ToggleSwitchTemplateSettings;
ProgressBarTemplateSettings = (function () {
var cls = function ProgressBarTemplateSettings() {
this.containerAnimationEndPosition = new Number();
this.containerAnimationStartPosition = new Number();
this.ellipseAnimationEndPosition = new Number();
this.ellipseAnimationWellPosition = new Number();
this.ellipseDiameter = new Number();
this.ellipseOffset = new Number();
this.indicatorLengthDelta = new Number();
this.dispatcher = new Object();
};
return cls;
}) ();
exports.ProgressBarTemplateSettings = ProgressBarTemplateSettings;
SettingsFlyoutTemplateSettings = (function () {
var cls = function SettingsFlyoutTemplateSettings() {
this.borderBrush = new Object();
this.borderThickness = new Thickness();
this.contentTransitions = new Object();
this.headerBackground = new Object();
this.headerForeground = new Object();
this.iconSource = new Object();
this.dispatcher = new Object();
};
return cls;
}) ();
exports.SettingsFlyoutTemplateSettings = SettingsFlyoutTemplateSettings;
ToolTipTemplateSettings = (function () {
var cls = function ToolTipTemplateSettings() {
this.fromHorizontalOffset = new Number();
this.fromVerticalOffset = new Number();
this.dispatcher = new Object();
};
return cls;
}) ();
exports.ToolTipTemplateSettings = ToolTipTemplateSettings;
ComboBoxTemplateSettings = (function () {
var cls = function ComboBoxTemplateSettings() {
this.dropDownClosedHeight = new Number();
this.dropDownOffset = new Number();
this.dropDownOpenedHeight = new Number();
this.selectedItemDirection = new AnimationDirection();
this.dropDownContentMinWidth = new Number();
this.dispatcher = new Object();
};
return cls;
}) ();
exports.ComboBoxTemplateSettings = ComboBoxTemplateSettings;
GridViewItemTemplateSettings = (function () {
var cls = function GridViewItemTemplateSettings() {
this.dragItemsCount = new Number();
this.dispatcher = new Object();
};
return cls;
}) ();
exports.GridViewItemTemplateSettings = GridViewItemTemplateSettings;
ListViewItemTemplateSettings = (function () {
var cls = function ListViewItemTemplateSettings() {
this.dragItemsCount = new Number();
this.dispatcher = new Object();
};
return cls;
}) ();
exports.ListViewItemTemplateSettings = ListViewItemTemplateSettings;
MenuFlyoutPresenterTemplateSettings = (function () {
var cls = function MenuFlyoutPresenterTemplateSettings() {
this.flyoutContentMinWidth = new Number();
this.dispatcher = new Object();
};
return cls;
}) ();
exports.MenuFlyoutPresenterTemplateSettings = MenuFlyoutPresenterTemplateSettings;
CalendarViewTemplateSettings = (function () {
var cls = function CalendarViewTemplateSettings() {
this.centerX = new Number();
this.centerY = new Number();
this.clipRect = new Object();
this.hasMoreContentAfter = new Boolean();
this.hasMoreContentBefore = new Boolean();
this.hasMoreViews = new Boolean();
this.headerText = new String();
this.minViewWidth = new Number();
this.weekDay1 = new String();
this.weekDay2 = new String();
this.weekDay3 = new String();
this.weekDay4 = new String();
this.weekDay5 = new String();
this.weekDay6 = new String();
this.weekDay7 = new String();
this.dispatcher = new Object();
};
return cls;
}) ();
exports.CalendarViewTemplateSettings = CalendarViewTemplateSettings;
SplitViewTemplateSettings = (function () {
var cls = function SplitViewTemplateSettings() {
this.compactPaneGridLength = new GridLength();
this.negativeOpenPaneLength = new Number();
this.negativeOpenPaneLengthMinusCompactLength = new Number();
this.openPaneGridLength = new GridLength();
this.openPaneLength = new Number();
this.openPaneLengthMinusCompactLength = new Number();
this.dispatcher = new Object();
};
return cls;
}) ();
exports.SplitViewTemplateSettings = SplitViewTemplateSettings;
AppBarTemplateSettings = (function () {
var cls = function AppBarTemplateSettings() {
this.clipRect = new Object();
this.compactRootMargin = new Thickness();
this.compactVerticalDelta = new Number();
this.hiddenRootMargin = new Thickness();
this.hiddenVerticalDelta = new Number();
this.minimalRootMargin = new Thickness();
this.minimalVerticalDelta = new Number();
this.dispatcher = new Object();
};
return cls;
}) ();
exports.AppBarTemplateSettings = AppBarTemplateSettings;
CommandBarTemplateSettings = (function () {
var cls = function CommandBarTemplateSettings() {
this.contentHeight = new Number();
this.negativeOverflowContentHeight = new Number();
this.overflowContentClipRect = new Object();
this.overflowContentHeight = new Number();
this.overflowContentHorizontalOffset = new Number();
this.overflowContentMaxHeight = new Number();
this.overflowContentMinWidth = new Number();
this.overflowContentMaxWidth = new Number();
this.effectiveOverflowButtonVisibility = new Number();
this.dispatcher = new Object();
};
return cls;
}) ();
exports.CommandBarTemplateSettings = CommandBarTemplateSettings;
DragCompletedEventArgs = (function () {
var cls = function DragCompletedEventArgs() {
this.canceled = new Boolean();
this.horizontalChange = new Number();
this.verticalChange = new Number();
this.originalSource = new Object();
};
var cls = function DragCompletedEventArgs(horizontalChange, verticalChange, canceled) {
this.canceled = new Boolean();
this.horizontalChange = new Number();
this.verticalChange = new Number();
this.originalSource = new Object();
};
return cls;
}) ();
exports.DragCompletedEventArgs = DragCompletedEventArgs;
DragDeltaEventArgs = (function () {
var cls = function DragDeltaEventArgs() {
this.horizontalChange = new Number();
this.verticalChange = new Number();
this.originalSource = new Object();
};
var cls = function DragDeltaEventArgs(horizontalChange, verticalChange) {
this.horizontalChange = new Number();
this.verticalChange = new Number();
this.originalSource = new Object();
};
return cls;
}) ();
exports.DragDeltaEventArgs = DragDeltaEventArgs;
DragStartedEventArgs = (function () {
var cls = function DragStartedEventArgs() {
this.horizontalOffset = new Number();
this.verticalOffset = new Number();
this.originalSource = new Object();
};
var cls = function DragStartedEventArgs(horizontalOffset, verticalOffset) {
this.horizontalOffset = new Number();
this.verticalOffset = new Number();
this.originalSource = new Object();
};
return cls;
}) ();
exports.DragStartedEventArgs = DragStartedEventArgs;
RangeBaseValueChangedEventArgs = (function () {
var cls = function RangeBaseValueChangedEventArgs() {
this.newValue = new Number();
this.oldValue = new Number();
this.originalSource = new Object();
};
return cls;
}) ();
exports.RangeBaseValueChangedEventArgs = RangeBaseValueChangedEventArgs;
ScrollEventArgs = (function () {
var cls = function ScrollEventArgs() {
this.newValue = new Number();
this.scrollEventType = new ScrollEventType();
this.originalSource = new Object();
};
return cls;
}) ();
exports.ScrollEventArgs = ScrollEventArgs;
Popup = (function () {
var cls = function Popup() {
this.verticalOffset = new Number();
this.isOpen = new Boolean();
this.isLightDismissEnabled = new Boolean();
this.horizontalOffset = new Number();
this.childTransitions = new Object();
this.child = new Object();
this.lightDismissOverlayMode = new Number();
this.height = new Number();
this.flowDirection = new Number();
this.minHeight = new Number();
this.dataContext = new Object();
this.name = new String();
this.minWidth = new Number();
this.maxWidth = new Number();
this.maxHeight = new Number();
this.margin = new Thickness();
this.language = new String();
this.horizontalAlignment = new Number();
this.resources = new Object();
this.width = new Number();
this.verticalAlignment = new Number();
this.tag = new Object();
this.style = new Object();
this.baseUri = new Object();
this.actualHeight = new Number();
this.parent = new Object();
this.triggers = new Object();
this.actualWidth = new Number();
this.requestedTheme = new Number();
this.focusVisualMargin = new Thickness();
this.focusVisualSecondaryBrush = new Object();
this.focusVisualPrimaryThickness = new Thickness();
this.focusVisualPrimaryBrush = new Object();
this.allowFocusWhenDisabled = new Boolean();
this.allowFocusOnInteraction = new Boolean();
this.focusVisualSecondaryThickness = new Thickness();
this.isTapEnabled = new Boolean();
this.allowDrop = new Boolean();
this.isHoldingEnabled = new Boolean();
this.isHitTestVisible = new Boolean();
this.isDoubleTapEnabled = new Boolean();
this.manipulationMode = new Number();
this.clip = new Object();
this.cacheMode = new Object();
this.isRightTapEnabled = new Boolean();
this.renderTransform = new Object();
this.visibility = new Number();
this.useLayoutRounding = new Boolean();
this.transitions = new Object();
this.renderTransformOrigin = new Object();
this.projection = new Object();
this.opacity = new Number();
this.desiredSize = new Object();
this.pointerCaptures = new Object();
this.renderSize = new Object();
this.compositeMode = new Number();
this.transform3D = new Object();
this.canDrag = new Boolean();
this.isAccessKeyScope = new Boolean();
this.exitDisplayModeOnAccessKeyInvoked = new Boolean();
this.contextFlyout = new FlyoutBase();
this.accessKeyScopeOwner = new Object();
this.accessKey = new String();
this.xYFocusUpNavigationStrategy = new Number();
this.highContrastAdjustment = new Number();
this.xYFocusRightNavigationStrategy = new Number();
this.xYFocusLeftNavigationStrategy = new Number();
this.keyTipHorizontalOffset = new Number();
this.xYFocusKeyboardNavigation = new Number();
this.xYFocusDownNavigationStrategy = new Number();
this.tabFocusNavigation = new Number();
this.keyTipVerticalOffset = new Number();
this.keyTipPlacementMode = new Number();
this.lights = new Object();
this.dispatcher = new Object();
};
cls.childProperty = new Object();
cls.childTransitionsProperty = new Object();
cls.horizontalOffsetProperty = new Object();
cls.isLightDismissEnabledProperty = new Object();
cls.isOpenProperty = new Object();
cls.verticalOffsetProperty = new Object();
cls.lightDismissOverlayModeProperty = new Object();
cls.styleProperty = new Object();
cls.actualHeightProperty = new Object();
cls.actualWidthProperty = new Object();
cls.dataContextProperty = new Object();
cls.flowDirectionProperty = new Object();
cls.heightProperty = new Object();
cls.horizontalAlignmentProperty = new Object();
cls.languageProperty = new Object();
cls.marginProperty = new Object();
cls.maxHeightProperty = new Object();
cls.maxWidthProperty = new Object();
cls.minHeightProperty = new Object();
cls.minWidthProperty = new Object();
cls.nameProperty = new Object();
cls.tagProperty = new Object();
cls.verticalAlignmentProperty = new Object();
cls.widthProperty = new Object();
cls.requestedThemeProperty = new Object();
cls.allowFocusOnInteractionProperty = new Object();
cls.allowFocusWhenDisabledProperty = new Object();
cls.focusVisualMarginProperty = new Object();
cls.focusVisualPrimaryBrushProperty = new Object();
cls.focusVisualPrimaryThicknessProperty = new Object();
cls.focusVisualSecondaryBrushProperty = new Object();
cls.focusVisualSecondaryThicknessProperty = new Object();
cls.pointerExitedEvent = new Object();
cls.allowDropProperty = new Object();
cls.cacheModeProperty = new Object();
cls.clipProperty = new Object();
cls.doubleTappedEvent = new Object();
cls.dragEnterEvent = new Object();
cls.dragLeaveEvent = new Object();
cls.dragOverEvent = new Object();
cls.dropEvent = new Object();
cls.holdingEvent = new Object();
cls.isDoubleTapEnabledProperty = new Object();
cls.isHitTestVisibleProperty = new Object();
cls.isHoldingEnabledProperty = new Object();
cls.isRightTapEnabledProperty = new Object();
cls.isTapEnabledProperty = new Object();
cls.keyDownEvent = new Object();
cls.keyUpEvent = new Object();
cls.manipulationCompletedEvent = new Object();
cls.manipulationDeltaEvent = new Object();
cls.manipulationInertiaStartingEvent = new Object();
cls.manipulationModeProperty = new Object();
cls.manipulationStartedEvent = new Object();
cls.manipulationStartingEvent = new Object();
cls.opacityProperty = new Object();
cls.pointerCanceledEvent = new Object();
cls.pointerCaptureLostEvent = new Object();
cls.pointerCapturesProperty = new Object();
cls.pointerEnteredEvent = new Object();
cls.pointerMovedEvent = new Object();
cls.pointerPressedEvent = new Object();
cls.pointerReleasedEvent = new Object();
cls.pointerWheelChangedEvent = new Object();
cls.projectionProperty = new Object();
cls.renderTransformOriginProperty = new Object();
cls.renderTransformProperty = new Object();
cls.rightTappedEvent = new Object();
cls.tappedEvent = new Object();
cls.transitionsProperty = new Object();
cls.useLayoutRoundingProperty = new Object();
cls.visibilityProperty = new Object();
cls.compositeModeProperty = new Object();
cls.transform3DProperty = new Object();
cls.canDragProperty = new Object();
cls.isAccessKeyScopeProperty = new Object();
cls.exitDisplayModeOnAccessKeyInvokedProperty = new Object();
cls.contextFlyoutProperty = new Object();
cls.accessKeyProperty = new Object();
cls.accessKeyScopeOwnerProperty = new Object();
cls.xYFocusKeyboardNavigationProperty = new Object();
cls.highContrastAdjustmentProperty = new Object();
cls.keyTipHorizontalOffsetProperty = new Object();
cls.keyTipPlacementModeProperty = new Object();
cls.keyTipVerticalOffsetProperty = new Object();
cls.lightsProperty = new Object();
cls.tabFocusNavigationProperty = new Object();
cls.xYFocusDownNavigationStrategyProperty = new Object();
cls.xYFocusLeftNavigationStrategyProperty = new Object();
cls.xYFocusRightNavigationStrategyProperty = new Object();
cls.xYFocusUpNavigationStrategyProperty = new Object();
cls.noFocusCandidateFoundEvent = new Object();
cls.losingFocusEvent = new Object();
cls.gettingFocusEvent = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.Popup = Popup;
TickBar = (function () {
var cls = function TickBar() {
this.fill = new Object();
this.height = new Number();
this.flowDirection = new Number();
this.minHeight = new Number();
this.dataContext = new Object();
this.name = new String();
this.minWidth = new Number();
this.maxWidth = new Number();
this.maxHeight = new Number();
this.margin = new Thickness();
this.language = new String();
this.horizontalAlignment = new Number();
this.resources = new Object();
this.width = new Number();
this.verticalAlignment = new Number();
this.tag = new Object();
this.style = new Object();
this.baseUri = new Object();
this.actualHeight = new Number();
this.parent = new Object();
this.triggers = new Object();
this.actualWidth = new Number();
this.requestedTheme = new Number();
this.focusVisualMargin = new Thickness();
this.focusVisualSecondaryBrush = new Object();
this.focusVisualPrimaryThickness = new Thickness();
this.focusVisualPrimaryBrush = new Object();
this.allowFocusWhenDisabled = new Boolean();
this.allowFocusOnInteraction = new Boolean();
this.focusVisualSecondaryThickness = new Thickness();
this.isTapEnabled = new Boolean();
this.allowDrop = new Boolean();
this.isHoldingEnabled = new Boolean();
this.isHitTestVisible = new Boolean();
this.isDoubleTapEnabled = new Boolean();
this.manipulationMode = new Number();
this.clip = new Object();
this.cacheMode = new Object();
this.isRightTapEnabled = new Boolean();
this.renderTransform = new Object();
this.visibility = new Number();
this.useLayoutRounding = new Boolean();
this.transitions = new Object();
this.renderTransformOrigin = new Object();
this.projection = new Object();
this.opacity = new Number();
this.desiredSize = new Object();
this.pointerCaptures = new Object();
this.renderSize = new Object();
this.compositeMode = new Number();
this.transform3D = new Object();
this.canDrag = new Boolean();
this.isAccessKeyScope = new Boolean();
this.exitDisplayModeOnAccessKeyInvoked = new Boolean();
this.contextFlyout = new FlyoutBase();
this.accessKeyScopeOwner = new Object();
this.accessKey = new String();
this.xYFocusUpNavigationStrategy = new Number();
this.highContrastAdjustment = new Number();
this.xYFocusRightNavigationStrategy = new Number();
this.xYFocusLeftNavigationStrategy = new Number();
this.keyTipHorizontalOffset = new Number();
this.xYFocusKeyboardNavigation = new Number();
this.xYFocusDownNavigationStrategy = new Number();
this.tabFocusNavigation = new Number();
this.keyTipVerticalOffset = new Number();
this.keyTipPlacementMode = new Number();
this.lights = new Object();
this.dispatcher = new Object();
};
cls.fillProperty = new Object();
cls.styleProperty = new Object();
cls.actualHeightProperty = new Object();
cls.actualWidthProperty = new Object();
cls.dataContextProperty = new Object();
cls.flowDirectionProperty = new Object();
cls.heightProperty = new Object();
cls.horizontalAlignmentProperty = new Object();
cls.languageProperty = new Object();
cls.marginProperty = new Object();
cls.maxHeightProperty = new Object();
cls.maxWidthProperty = new Object();
cls.minHeightProperty = new Object();
cls.minWidthProperty = new Object();
cls.nameProperty = new Object();
cls.tagProperty = new Object();
cls.verticalAlignmentProperty = new Object();
cls.widthProperty = new Object();
cls.requestedThemeProperty = new Object();
cls.allowFocusOnInteractionProperty = new Object();
cls.allowFocusWhenDisabledProperty = new Object();
cls.focusVisualMarginProperty = new Object();
cls.focusVisualPrimaryBrushProperty = new Object();
cls.focusVisualPrimaryThicknessProperty = new Object();
cls.focusVisualSecondaryBrushProperty = new Object();
cls.focusVisualSecondaryThicknessProperty = new Object();
cls.pointerExitedEvent = new Object();
cls.allowDropProperty = new Object();
cls.cacheModeProperty = new Object();
cls.clipProperty = new Object();
cls.doubleTappedEvent = new Object();
cls.dragEnterEvent = new Object();
cls.dragLeaveEvent = new Object();
cls.dragOverEvent = new Object();
cls.dropEvent = new Object();
cls.holdingEvent = new Object();
cls.isDoubleTapEnabledProperty = new Object();
cls.isHitTestVisibleProperty = new Object();
cls.isHoldingEnabledProperty = new Object();
cls.isRightTapEnabledProperty = new Object();
cls.isTapEnabledProperty = new Object();
cls.keyDownEvent = new Object();
cls.keyUpEvent = new Object();
cls.manipulationCompletedEvent = new Object();
cls.manipulationDeltaEvent = new Object();
cls.manipulationInertiaStartingEvent = new Object();
cls.manipulationModeProperty = new Object();
cls.manipulationStartedEvent = new Object();
cls.manipulationStartingEvent = new Object();
cls.opacityProperty = new Object();
cls.pointerCanceledEvent = new Object();
cls.pointerCaptureLostEvent = new Object();
cls.pointerCapturesProperty = new Object();
cls.pointerEnteredEvent = new Object();
cls.pointerMovedEvent = new Object();
cls.pointerPressedEvent = new Object();
cls.pointerReleasedEvent = new Object();
cls.pointerWheelChangedEvent = new Object();
cls.projectionProperty = new Object();
cls.renderTransformOriginProperty = new Object();
cls.renderTransformProperty = new Object();
cls.rightTappedEvent = new Object();
cls.tappedEvent = new Object();
cls.transitionsProperty = new Object();
cls.useLayoutRoundingProperty = new Object();
cls.visibilityProperty = new Object();
cls.compositeModeProperty = new Object();
cls.transform3DProperty = new Object();
cls.canDragProperty = new Object();
cls.isAccessKeyScopeProperty = new Object();
cls.exitDisplayModeOnAccessKeyInvokedProperty = new Object();
cls.contextFlyoutProperty = new Object();
cls.accessKeyProperty = new Object();
cls.accessKeyScopeOwnerProperty = new Object();
cls.xYFocusKeyboardNavigationProperty = new Object();
cls.highContrastAdjustmentProperty = new Object();
cls.keyTipHorizontalOffsetProperty = new Object();
cls.keyTipPlacementModeProperty = new Object();
cls.keyTipVerticalOffsetProperty = new Object();
cls.lightsProperty = new Object();
cls.tabFocusNavigationProperty = new Object();
cls.xYFocusDownNavigationStrategyProperty = new Object();
cls.xYFocusLeftNavigationStrategyProperty = new Object();
cls.xYFocusRightNavigationStrategyProperty = new Object();
cls.xYFocusUpNavigationStrategyProperty = new Object();
cls.noFocusCandidateFoundEvent = new Object();
cls.losingFocusEvent = new Object();
cls.gettingFocusEvent = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.TickBar = TickBar;
CarouselPanel = (function () {
var cls = function CarouselPanel() {
this.scrollOwner = new Object();
this.canVerticallyScroll = new Boolean();
this.canHorizontallyScroll = new Boolean();
this.extentHeight = new Number();
this.extentWidth = new Number();
this.horizontalOffset = new Number();
this.verticalOffset = new Number();
this.viewportHeight = new Number();
this.viewportWidth = new Number();
this.areHorizontalSnapPointsRegular = new Boolean();
this.areVerticalSnapPointsRegular = new Boolean();
this.itemContainerGenerator = new Object();
this.childrenTransitions = new Object();
this.background = new Object();
this.children = new Object();
this.isItemsHost = new Boolean();
this.height = new Number();
this.flowDirection = new Number();
this.minHeight = new Number();
this.dataContext = new Object();
this.name = new String();
this.minWidth = new Number();
this.maxWidth = new Number();
this.maxHeight = new Number();
this.margin = new Thickness();
this.language = new String();
this.horizontalAlignment = new Number();
this.resources = new Object();
this.width = new Number();
this.verticalAlignment = new Number();
this.tag = new Object();
this.style = new Object();
this.baseUri = new Object();
this.actualHeight = new Number();
this.parent = new Object();
this.triggers = new Object();
this.actualWidth = new Number();
this.requestedTheme = new Number();
this.focusVisualMargin = new Thickness();
this.focusVisualSecondaryBrush = new Object();
this.focusVisualPrimaryThickness = new Thickness();
this.focusVisualPrimaryBrush = new Object();
this.allowFocusWhenDisabled = new Boolean();
this.allowFocusOnInteraction = new Boolean();
this.focusVisualSecondaryThickness = new Thickness();
this.isTapEnabled = new Boolean();
this.allowDrop = new Boolean();
this.isHoldingEnabled = new Boolean();
this.isHitTestVisible = new Boolean();
this.isDoubleTapEnabled = new Boolean();
this.manipulationMode = new Number();
this.clip = new Object();
this.cacheMode = new Object();
this.isRightTapEnabled = new Boolean();
this.renderTransform = new Object();
this.visibility = new Number();
this.useLayoutRounding = new Boolean();
this.transitions = new Object();
this.renderTransformOrigin = new Object();
this.projection = new Object();
this.opacity = new Number();
this.desiredSize = new Object();
this.pointerCaptures = new Object();
this.renderSize = new Object();
this.compositeMode = new Number();
this.transform3D = new Object();
this.canDrag = new Boolean();
this.isAccessKeyScope = new Boolean();
this.exitDisplayModeOnAccessKeyInvoked = new Boolean();
this.contextFlyout = new FlyoutBase();
this.accessKeyScopeOwner = new Object();
this.accessKey = new String();
this.xYFocusUpNavigationStrategy = new Number();
this.highContrastAdjustment = new Number();
this.xYFocusRightNavigationStrategy = new Number();
this.xYFocusLeftNavigationStrategy = new Number();
this.keyTipHorizontalOffset = new Number();
this.xYFocusKeyboardNavigation = new Number();
this.xYFocusDownNavigationStrategy = new Number();
this.tabFocusNavigation = new Number();
this.keyTipVerticalOffset = new Number();
this.keyTipPlacementMode = new Number();
this.lights = new Object();
this.dispatcher = new Object();
};
cls.prototype.lineUp = function lineUp() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.lineDown = function lineDown() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.lineLeft = function lineLeft() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.lineRight = function lineRight() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.pageUp = function pageUp() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.pageDown = function pageDown() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.pageLeft = function pageLeft() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.pageRight = function pageRight() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.mouseWheelUp = function mouseWheelUp() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.mouseWheelDown = function mouseWheelDown() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.mouseWheelLeft = function mouseWheelLeft() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.mouseWheelRight = function mouseWheelRight() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.setHorizontalOffset = function setHorizontalOffset(offset) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="offset" type="Number">A param.</param>
/// </signature>
}
cls.prototype.setVerticalOffset = function setVerticalOffset(offset) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="offset" type="Number">A param.</param>
/// </signature>
}
cls.prototype.makeVisible = function makeVisible(visual, rectangle) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="visual" type="Object">A param.</param>
/// <param name="rectangle" type="Object">A param.</param>
/// <returns type="Object" />
/// </signature>
return new Object();
}
cls.prototype.getIrregularSnapPoints = function getIrregularSnapPoints(orientation, alignment) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="orientation" type="Number">A param.</param>
/// <param name="alignment" type="SnapPointsAlignment">A param.</param>
/// <returns type="Object" />
/// </signature>
return new Object();
}
cls.prototype.getRegularSnapPoints = function getRegularSnapPoints(orientation, alignment, offset) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="orientation" type="Number">A param.</param>
/// <param name="alignment" type="SnapPointsAlignment">A param.</param>
/// <param name="offset" type="Number">A param.</param>
/// <returns type="Number" />
/// </signature>
return new Number();
}
cls.backgroundProperty = new Object();
cls.childrenTransitionsProperty = new Object();
cls.isItemsHostProperty = new Object();
cls.styleProperty = new Object();
cls.actualHeightProperty = new Object();
cls.actualWidthProperty = new Object();
cls.dataContextProperty = new Object();
cls.flowDirectionProperty = new Object();
cls.heightProperty = new Object();
cls.horizontalAlignmentProperty = new Object();
cls.languageProperty = new Object();
cls.marginProperty = new Object();
cls.maxHeightProperty = new Object();
cls.maxWidthProperty = new Object();
cls.minHeightProperty = new Object();
cls.minWidthProperty = new Object();
cls.nameProperty = new Object();
cls.tagProperty = new Object();
cls.verticalAlignmentProperty = new Object();
cls.widthProperty = new Object();
cls.requestedThemeProperty = new Object();
cls.allowFocusOnInteractionProperty = new Object();
cls.allowFocusWhenDisabledProperty = new Object();
cls.focusVisualMarginProperty = new Object();
cls.focusVisualPrimaryBrushProperty = new Object();
cls.focusVisualPrimaryThicknessProperty = new Object();
cls.focusVisualSecondaryBrushProperty = new Object();
cls.focusVisualSecondaryThicknessProperty = new Object();
cls.pointerExitedEvent = new Object();
cls.allowDropProperty = new Object();
cls.cacheModeProperty = new Object();
cls.clipProperty = new Object();
cls.doubleTappedEvent = new Object();
cls.dragEnterEvent = new Object();
cls.dragLeaveEvent = new Object();
cls.dragOverEvent = new Object();
cls.dropEvent = new Object();
cls.holdingEvent = new Object();
cls.isDoubleTapEnabledProperty = new Object();
cls.isHitTestVisibleProperty = new Object();
cls.isHoldingEnabledProperty = new Object();
cls.isRightTapEnabledProperty = new Object();
cls.isTapEnabledProperty = new Object();
cls.keyDownEvent = new Object();
cls.keyUpEvent = new Object();
cls.manipulationCompletedEvent = new Object();
cls.manipulationDeltaEvent = new Object();
cls.manipulationInertiaStartingEvent = new Object();
cls.manipulationModeProperty = new Object();
cls.manipulationStartedEvent = new Object();
cls.manipulationStartingEvent = new Object();
cls.opacityProperty = new Object();
cls.pointerCanceledEvent = new Object();
cls.pointerCaptureLostEvent = new Object();
cls.pointerCapturesProperty = new Object();
cls.pointerEnteredEvent = new Object();
cls.pointerMovedEvent = new Object();
cls.pointerPressedEvent = new Object();
cls.pointerReleasedEvent = new Object();
cls.pointerWheelChangedEvent = new Object();
cls.projectionProperty = new Object();
cls.renderTransformOriginProperty = new Object();
cls.renderTransformProperty = new Object();
cls.rightTappedEvent = new Object();
cls.tappedEvent = new Object();
cls.transitionsProperty = new Object();
cls.useLayoutRoundingProperty = new Object();
cls.visibilityProperty = new Object();
cls.compositeModeProperty = new Object();
cls.transform3DProperty = new Object();
cls.canDragProperty = new Object();
cls.isAccessKeyScopeProperty = new Object();
cls.exitDisplayModeOnAccessKeyInvokedProperty = new Object();
cls.contextFlyoutProperty = new Object();
cls.accessKeyProperty = new Object();
cls.accessKeyScopeOwnerProperty = new Object();
cls.xYFocusKeyboardNavigationProperty = new Object();
cls.highContrastAdjustmentProperty = new Object();
cls.keyTipHorizontalOffsetProperty = new Object();
cls.keyTipPlacementModeProperty = new Object();
cls.keyTipVerticalOffsetProperty = new Object();
cls.lightsProperty = new Object();
cls.tabFocusNavigationProperty = new Object();
cls.xYFocusDownNavigationStrategyProperty = new Object();
cls.xYFocusLeftNavigationStrategyProperty = new Object();
cls.xYFocusRightNavigationStrategyProperty = new Object();
cls.xYFocusUpNavigationStrategyProperty = new Object();
cls.noFocusCandidateFoundEvent = new Object();
cls.losingFocusEvent = new Object();
cls.gettingFocusEvent = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.CarouselPanel = CarouselPanel;
OrientedVirtualizingPanel = (function () {
var cls = function OrientedVirtualizingPanel() {
this.scrollOwner = new Object();
this.canVerticallyScroll = new Boolean();
this.canHorizontallyScroll = new Boolean();
this.extentHeight = new Number();
this.extentWidth = new Number();
this.horizontalOffset = new Number();
this.verticalOffset = new Number();
this.viewportHeight = new Number();
this.viewportWidth = new Number();
this.areHorizontalSnapPointsRegular = new Boolean();
this.areVerticalSnapPointsRegular = new Boolean();
this.itemContainerGenerator = new Object();
this.childrenTransitions = new Object();
this.background = new Object();
this.children = new Object();
this.isItemsHost = new Boolean();
this.height = new Number();
this.flowDirection = new Number();
this.minHeight = new Number();
this.dataContext = new Object();
this.name = new String();
this.minWidth = new Number();
this.maxWidth = new Number();
this.maxHeight = new Number();
this.margin = new Thickness();
this.language = new String();
this.horizontalAlignment = new Number();
this.resources = new Object();
this.width = new Number();
this.verticalAlignment = new Number();
this.tag = new Object();
this.style = new Object();
this.baseUri = new Object();
this.actualHeight = new Number();
this.parent = new Object();
this.triggers = new Object();
this.actualWidth = new Number();
this.requestedTheme = new Number();
this.focusVisualMargin = new Thickness();
this.focusVisualSecondaryBrush = new Object();
this.focusVisualPrimaryThickness = new Thickness();
this.focusVisualPrimaryBrush = new Object();
this.allowFocusWhenDisabled = new Boolean();
this.allowFocusOnInteraction = new Boolean();
this.focusVisualSecondaryThickness = new Thickness();
this.isTapEnabled = new Boolean();
this.allowDrop = new Boolean();
this.isHoldingEnabled = new Boolean();
this.isHitTestVisible = new Boolean();
this.isDoubleTapEnabled = new Boolean();
this.manipulationMode = new Number();
this.clip = new Object();
this.cacheMode = new Object();
this.isRightTapEnabled = new Boolean();
this.renderTransform = new Object();
this.visibility = new Number();
this.useLayoutRounding = new Boolean();
this.transitions = new Object();
this.renderTransformOrigin = new Object();
this.projection = new Object();
this.opacity = new Number();
this.desiredSize = new Object();
this.pointerCaptures = new Object();
this.renderSize = new Object();
this.compositeMode = new Number();
this.transform3D = new Object();
this.canDrag = new Boolean();
this.isAccessKeyScope = new Boolean();
this.exitDisplayModeOnAccessKeyInvoked = new Boolean();
this.contextFlyout = new FlyoutBase();
this.accessKeyScopeOwner = new Object();
this.accessKey = new String();
this.xYFocusUpNavigationStrategy = new Number();
this.highContrastAdjustment = new Number();
this.xYFocusRightNavigationStrategy = new Number();
this.xYFocusLeftNavigationStrategy = new Number();
this.keyTipHorizontalOffset = new Number();
this.xYFocusKeyboardNavigation = new Number();
this.xYFocusDownNavigationStrategy = new Number();
this.tabFocusNavigation = new Number();
this.keyTipVerticalOffset = new Number();
this.keyTipPlacementMode = new Number();
this.lights = new Object();
this.dispatcher = new Object();
};
cls.prototype.lineUp = function lineUp() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.lineDown = function lineDown() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.lineLeft = function lineLeft() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.lineRight = function lineRight() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.pageUp = function pageUp() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.pageDown = function pageDown() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.pageLeft = function pageLeft() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.pageRight = function pageRight() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.mouseWheelUp = function mouseWheelUp() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.mouseWheelDown = function mouseWheelDown() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.mouseWheelLeft = function mouseWheelLeft() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.mouseWheelRight = function mouseWheelRight() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.setHorizontalOffset = function setHorizontalOffset(offset) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="offset" type="Number">A param.</param>
/// </signature>
}
cls.prototype.setVerticalOffset = function setVerticalOffset(offset) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="offset" type="Number">A param.</param>
/// </signature>
}
cls.prototype.makeVisible = function makeVisible(visual, rectangle) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="visual" type="Object">A param.</param>
/// <param name="rectangle" type="Object">A param.</param>
/// <returns type="Object" />
/// </signature>
return new Object();
}
cls.prototype.getIrregularSnapPoints = function getIrregularSnapPoints(orientation, alignment) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="orientation" type="Number">A param.</param>
/// <param name="alignment" type="SnapPointsAlignment">A param.</param>
/// <returns type="Object" />
/// </signature>
return new Object();
}
cls.prototype.getRegularSnapPoints = function getRegularSnapPoints(orientation, alignment, offset) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="orientation" type="Number">A param.</param>
/// <param name="alignment" type="SnapPointsAlignment">A param.</param>
/// <param name="offset" type="Number">A param.</param>
/// <returns type="Number" />
/// </signature>
return new Number();
}
cls.prototype.getInsertionIndexes = function getInsertionIndexes(position, first, second) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="position" type="Object">A param.</param>
/// <param name="first" type="Number">A param.</param>
/// <param name="second" type="Number">A param.</param>
/// </signature>
}
cls.backgroundProperty = new Object();
cls.childrenTransitionsProperty = new Object();
cls.isItemsHostProperty = new Object();
cls.styleProperty = new Object();
cls.actualHeightProperty = new Object();
cls.actualWidthProperty = new Object();
cls.dataContextProperty = new Object();
cls.flowDirectionProperty = new Object();
cls.heightProperty = new Object();
cls.horizontalAlignmentProperty = new Object();
cls.languageProperty = new Object();
cls.marginProperty = new Object();
cls.maxHeightProperty = new Object();
cls.maxWidthProperty = new Object();
cls.minHeightProperty = new Object();
cls.minWidthProperty = new Object();
cls.nameProperty = new Object();
cls.tagProperty = new Object();
cls.verticalAlignmentProperty = new Object();
cls.widthProperty = new Object();
cls.requestedThemeProperty = new Object();
cls.allowFocusOnInteractionProperty = new Object();
cls.allowFocusWhenDisabledProperty = new Object();
cls.focusVisualMarginProperty = new Object();
cls.focusVisualPrimaryBrushProperty = new Object();
cls.focusVisualPrimaryThicknessProperty = new Object();
cls.focusVisualSecondaryBrushProperty = new Object();
cls.focusVisualSecondaryThicknes